aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-08-06 07:29:29 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-08-08 07:24:06 +0800
commitc372b1eb75961a8b0fd9b204de5b8040a55d39c2 (patch)
treed3b39b463be27ee61e9972e63b90a03262a02f4a
parent55228e31be5b0d25115b9b19549f757ca460c0ee (diff)
bsc_msc: Remove the except code as it is wrong...
Remove wrong code that is luckily not called. We would end up in a reconnect and attempt to bsc_fd_register the same socket again. I am removing this part of the code as it is not used and it would need to know if the fd has ever been registered or not...
-rw-r--r--openbsc/src/bsc_msc.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/openbsc/src/bsc_msc.c b/openbsc/src/bsc_msc.c
index feccc1da5..48eab8c35 100644
--- a/openbsc/src/bsc_msc.c
+++ b/openbsc/src/bsc_msc.c
@@ -58,20 +58,6 @@ static void msc_con_timeout(void *_con)
bsc_msc_lost(con);
}
-static int bsc_msc_except(struct bsc_fd *bfd)
-{
- struct write_queue *wrt;
- struct bsc_msc_connection *con;
-
- LOGP(DMSC, LOGL_ERROR, "Exception on the BFD. Closing down.\n");
-
- wrt = container_of(bfd, struct write_queue, bfd);
- con = container_of(wrt, struct bsc_msc_connection, write_queue);
-
- connection_loss(con);
- return 0;
-}
-
/* called in the case of a non blocking connect */
static int msc_connection_connect(struct bsc_fd *fd, unsigned int what)
{
@@ -222,7 +208,6 @@ struct bsc_msc_connection *bsc_msc_create(const char *ip, int port, int prio)
con->port = port;
con->prio = prio;
write_queue_init(&con->write_queue, 100);
- con->write_queue.except_cb = bsc_msc_except;
return con;
}