diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-09-25 11:15:18 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:59:12 -0500 |
commit | 30381686c4874e4f9602a977a31399e49350e597 (patch) | |
tree | 5dd22bab490fc75070a7d5a713cecbc57dd6eef4 /source4/auth | |
parent | 045543b661c1ee2c1dac72203e634b9a08568081 (diff) | |
download | samba-30381686c4874e4f9602a977a31399e49350e597.tar.gz samba-30381686c4874e4f9602a977a31399e49350e597.tar.bz2 samba-30381686c4874e4f9602a977a31399e49350e597.zip |
r2621: - now that the client code is non-blocking, we no longer need
write_data and read_data, which are inherently blocking operations
- got rid of some old NBT keepalive routines that are not needed
(This used to be commit e73b4ae4e500d3b7ee57e160e0f8b63c99b2542a)
Diffstat (limited to 'source4/auth')
-rw-r--r-- | source4/auth/auth_server.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/source4/auth/auth_server.c b/source4/auth/auth_server.c index d66415b525..be272e625c 100644 --- a/source4/auth/auth_server.c +++ b/source4/auth/auth_server.c @@ -145,24 +145,6 @@ static void free_server_private_data(void **private_data_pointer) } /**************************************************************************** - Send a 'keepalive' packet down the cli pipe. -****************************************************************************/ - -static void send_server_keepalive(void **private_data_pointer) -{ - struct smbcli_state **cli = (struct smbcli_state **)private_data_pointer; - - /* also send a keepalive to the password server if its still - connected */ - if (cli && *cli && (*cli)->initialised) { - if (!send_nbt_keepalive((*cli)->fd)) { - DEBUG( 2, ( "password server keepalive failed.\n")); - smbcli_shutdown(*cli); - } - } -} - -/**************************************************************************** Get the challenge out of a password server. ****************************************************************************/ |