diff options
author | Luke Leighton <lkcl@samba.org> | 1999-06-24 18:50:55 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-06-24 18:50:55 +0000 |
commit | ceb20adb3c924818201fa8992e19e82f45b40710 (patch) | |
tree | 9143ef104b0336228fef00542cfe30e3661b3eea | |
parent | 1d2557cc27b146aa88f70d4b973fd2178f90718b (diff) | |
download | samba-ceb20adb3c924818201fa8992e19e82f45b40710.tar.gz samba-ceb20adb3c924818201fa8992e19e82f45b40710.tar.xz samba-ceb20adb3c924818201fa8992e19e82f45b40710.zip |
debugging of NBT messages added.
-rw-r--r-- | source/smbd/reply.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/smbd/reply.c b/source/smbd/reply.c index faf9c051d22..58f327771d6 100644 --- a/source/smbd/reply.c +++ b/source/smbd/reply.c @@ -125,6 +125,9 @@ int reply_special(char *inbuf,char *outbuf) smb_setlen(outbuf,0); + DEBUG(20,("NBT message\n")); + dump_data(20, inbuf, smb_len(inbuf)); + switch (msg_type) { case 0x81: /* session request */ CVAL(outbuf,0) = 0x82; |