diff options
author | Holger Hans Peter Freyther <zecke@selfish.org> | 2010-03-05 19:42:09 +0100 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2010-03-08 14:32:39 +0100 |
commit | a49951fed75d681722df6d65fd318a697c87e4bd (patch) | |
tree | 8a803fa50cea734902909d6c55884df7a61bf73c /include/osmocore | |
parent | 1e9086684f258a9b8eed8f5c8d7d4f6c98665636 (diff) |
write_queue: Make the bfd cb public so it can be used in a different context
* I'm doing a nonblocking connect and for this I need to select
on writable and the first thing I need to do is to check the
SOL_SOCKET SO_ERROR state. I realize this by setting a different
cb on the embedded bfd during setup and then go back to the real
implementation.
Diffstat (limited to 'include/osmocore')
-rw-r--r-- | include/osmocore/write_queue.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/osmocore/write_queue.h b/include/osmocore/write_queue.h index af3d44be..c84000c1 100644 --- a/include/osmocore/write_queue.h +++ b/include/osmocore/write_queue.h @@ -39,5 +39,6 @@ struct write_queue { void write_queue_init(struct write_queue *queue, int max_length); int write_queue_enqueue(struct write_queue *queue, struct msgb *data); +int write_queue_bfd_cb(struct bsc_fd *fd, unsigned int what); #endif |