summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1999-08-18 20:10:12 +0000
committerLuke Leighton <lkcl@samba.org>1999-08-18 20:10:12 +0000
commitf221bfa4ace27b898c9326b1d81df59e0ceba032 (patch)
tree27c134018300d9128f13f10d9402b911135971f5
parent07d8c3dba22da89bfc2e0c7969ab00c56dcb0de5 (diff)
downloadsamba-f221bfa4ace27b898c9326b1d81df59e0ceba032.tar.gz
samba-f221bfa4ace27b898c9326b1d81df59e0ceba032.tar.bz2
samba-f221bfa4ace27b898c9326b1d81df59e0ceba032.zip
debug info display (netbios layer).
(This used to be commit 5c974cc4a4cdcb9fd3fe01e93aa577b81cf2d18b)
-rw-r--r--source3/lib/util_sock.c12
-rw-r--r--source3/libsmb/clientgen.c16
2 files changed, 23 insertions, 5 deletions
diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c
index 4a67fa00aa..e9859dfa17 100644
--- a/source3/lib/util_sock.c
+++ b/source3/lib/util_sock.c
@@ -526,6 +526,7 @@ BOOL receive_smb(int fd,char *buffer, unsigned int timeout)
BOOL client_receive_smb(int fd,char *buffer, unsigned int timeout)
{
BOOL ret;
+ uint8 msg_type;
for(;;)
{
@@ -539,9 +540,18 @@ BOOL client_receive_smb(int fd,char *buffer, unsigned int timeout)
}
/* Ignore session keepalive packets. */
- if(CVAL(buffer,0) != 0x85)
+ msg_type = CVAL(buffer,0);
+ if (msg_type != 0x85)
break;
}
+ if (msg_type == 0)
+ {
+ show_msg(buffer);
+ }
+ else
+ {
+ dump_data(10, buffer, smb_len(buffer) + 4);
+ }
show_msg(buffer);
return ret;
}
diff --git a/source3/libsmb/clientgen.c b/source3/libsmb/clientgen.c
index ecab198c94..efed3555ba 100644
--- a/source3/libsmb/clientgen.c
+++ b/source3/libsmb/clientgen.c
@@ -60,13 +60,21 @@ static BOOL cli_send_smb(struct cli_state *cli, BOOL show)
ssize_t ret;
BOOL reestablished=False;
+ len = smb_len(cli->outbuf) + 4;
+
if (show)
{
- show_msg(cli->outbuf);
+ uint8 msg_type = CVAL(cli->outbuf, 0);
+ if (msg_type == 0)
+ {
+ show_msg(cli->outbuf);
+ }
+ else
+ {
+ dump_data(10, cli->outbuf, len);
+ }
}
- len = smb_len(cli->outbuf) + 4;
-
while (nwritten < len) {
ret = write_socket(cli->fd,cli->outbuf+nwritten,len - nwritten);
if (ret <= 0 && errno == EPIPE && !reestablished)
@@ -2465,7 +2473,7 @@ BOOL cli_session_request(struct cli_state *cli,
retry:
#endif /* WITH_SSL */
- cli_send_smb(cli, False);
+ cli_send_smb(cli, True);
DEBUG(5,("Sent session request\n"));
if (!cli_receive_smb(cli))