diff options
author | Volker Lendecke <vl@samba.org> | 2009-02-23 00:21:27 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-02-24 20:40:48 +0100 |
commit | 08f028f179f474f83d46b1a23d1cfbd8848b68b0 (patch) | |
tree | fb581fabc98c7500b15e406bb92475d5f22292d9 /lib/async_req | |
parent | bbbdfa20566a607e0fdfdd190bb12bc3130e8bee (diff) | |
download | samba-08f028f179f474f83d46b1a23d1cfbd8848b68b0.tar.gz samba-08f028f179f474f83d46b1a23d1cfbd8848b68b0.tar.bz2 samba-08f028f179f474f83d46b1a23d1cfbd8848b68b0.zip |
Remove unused param_connect struct
Diffstat (limited to 'lib/async_req')
-rw-r--r-- | lib/async_req/async_sock.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/async_req/async_sock.c b/lib/async_req/async_sock.c index 86f89c159a..7bb52767af 100644 --- a/lib/async_req/async_sock.c +++ b/lib/async_req/async_sock.c @@ -35,7 +35,6 @@ enum async_syscall_type { ASYNC_SYSCALL_SEND, ASYNC_SYSCALL_RECV, - ASYNC_SYSCALL_CONNECT }; /** @@ -59,16 +58,6 @@ struct async_syscall_state { size_t length; int flags; } param_recv; - struct param_connect { - /** - * connect needs to be done on a nonblocking - * socket. Keep the old flags around - */ - long old_sockflags; - int fd; - const struct sockaddr *address; - socklen_t address_len; - } param_connect; } param; union { |