diff options
author | Luke Leighton <lkcl@samba.org> | 1997-10-23 13:38:46 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1997-10-23 13:38:46 +0000 |
commit | 5cd52a56a4846d6a720e63e723d3777b207e0724 (patch) | |
tree | d9dc86a467b28ac48be6f30e8e992d045e7d655f /source3/lib | |
parent | d38aba33afefc5791c1a672f5786bf2d8da8dda8 (diff) | |
download | samba-5cd52a56a4846d6a720e63e723d3777b207e0724.tar.gz samba-5cd52a56a4846d6a720e63e723d3777b207e0724.tar.bz2 samba-5cd52a56a4846d6a720e63e723d3777b207e0724.zip |
playing about, trying to SMBopenX a \PIPE\NETLOGON (should be a SMBopen)
and then send a LSA_REQ_CHAL down it.
(This used to be commit 473f21071fad603865358821b83df6b58c9a06a5)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index 93f02785b9..91e3581c30 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -1985,6 +1985,9 @@ int read_udp_socket(int fd,char *buf,int len) lastip = *(struct in_addr *) &sock.sa_data[2]; lastport = ntohs(((struct sockaddr_in *)&sock)->sin_port); + DEBUG(10,("read_udp_socket: lastip %s lastport %d read: %d\n", + inet_ntoa(lastip), lastport, ret)); + return(ret); } |