From 7a2a71e25559394cfd0ceeb98b510e6bf778fc54 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 1 May 2009 21:54:11 +0000 Subject: [PATCH] revert commit #481: we actually still need that stupid usleep() to reliably bootstrap nanoBTS :( --- src/input/ipaccess.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/input/ipaccess.c b/src/input/ipaccess.c index ad32259f9..ea7f847c2 100644 --- a/src/input/ipaccess.c +++ b/src/input/ipaccess.c @@ -365,6 +365,7 @@ static int handle_ts1_write(struct bsc_fd *bfd) ret = send(bfd->fd, msg->data, msg->len, 0); msgb_free(msg); + usleep(100000); return ret; }