added some debug messages

This commit is contained in:
jsorg71 2006-03-13 00:32:10 +00:00
parent 4a04e6968a
commit b54d94ee2f

View File

@ -565,30 +565,36 @@ xrdp_sec_recv(struct xrdp_sec* self, struct stream* s, int* chan)
self->pub_mod, self->pri_exp); self->pub_mod, self->pri_exp);
xrdp_sec_establish_keys(self); xrdp_sec_establish_keys(self);
*chan = 1; /* just set a non existing channel and exit */ *chan = 1; /* just set a non existing channel and exit */
DEBUG((" out xrdp_sec_recv\r\n"));
return 0; return 0;
} }
if (flags & SEC_LOGON_INFO) /* 0x40 */ if (flags & SEC_LOGON_INFO) /* 0x40 */
{ {
if (xrdp_sec_process_logon_info(self, s) != 0) if (xrdp_sec_process_logon_info(self, s) != 0)
{ {
DEBUG((" out xrdp_sec_recv error\r\n"));
return 1; return 1;
} }
if (xrdp_sec_send_lic_initial(self) != 0) if (xrdp_sec_send_lic_initial(self) != 0)
{ {
DEBUG((" out xrdp_sec_recv error\r\n"));
return 1; return 1;
} }
*chan = 1; /* just set a non existing channel and exit */ *chan = 1; /* just set a non existing channel and exit */
DEBUG((" out xrdp_sec_recv\r\n"));
return 0; return 0;
} }
if (flags & SEC_LICENCE_NEG) /* 0x80 */ if (flags & SEC_LICENCE_NEG) /* 0x80 */
{ {
if (xrdp_sec_send_lic_response(self) != 0) if (xrdp_sec_send_lic_response(self) != 0)
{ {
DEBUG((" out xrdp_sec_recv error\r\n"));
return 1; return 1;
} }
DEBUG((" out xrdp_sec_recv\r\n"));
return -1; /* special error that means send demand active */ return -1; /* special error that means send demand active */
} }
DEBUG((" out xrdp_sec_recv error\r\n")); DEBUG((" out xrdp_sec_recv\r\n"));
return 0; return 0;
} }