Fixed debugging for fragmented packets.

FossilOrigin-Name: 1a4c19ca1296f3e82ddc4e5f27674bf15814b842f67add841cc8ba554f3d32ff
This commit is contained in:
7u83@mail.ru 2015-04-13 10:46:11 +00:00
parent 176080c4cf
commit 9b48682667
1 changed files with 1 additions and 1 deletions

View File

@ -436,7 +436,7 @@ int conn_process_packet(struct conn *conn, uint8_t * packet, int len,struct sock
if (f == NULL)
return 0;
cw_dbg_msg(DBG_MSG_IN, conn, packet, len,from);
cw_dbg_msg(DBG_MSG_IN, conn, f+4, *(uint32_t*)f,from);
int rc = process_message(conn, f + 4, *(uint32_t *) f, from);
free(f);