From e2170a9f0398c738749e78e1c4cd66684a0dccbd Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Fri, 6 Aug 2010 07:29:29 +0800 Subject: 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... --- openbsc/src/bsc_msc.c | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'openbsc') diff --git a/openbsc/src/bsc_msc.c b/openbsc/src/bsc_msc.c index a04460659..e89269b6c 100644 --- a/openbsc/src/bsc_msc.c +++ b/openbsc/src/bsc_msc.c @@ -59,20 +59,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) { @@ -221,7 +207,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; } -- cgit v1.2.3