|
From: Bob T. <bt...@us...> - 2003-10-08 03:15:06
|
Update of /cvsroot/benson/benson3/src/network
In directory sc8-pr-cvs1:/tmp/cvs-serv3889/src/network
Modified Files:
network.h v31_network_client.c
Log Message:
More changes this may actually work.
Index: network.h
===================================================================
RCS file: /cvsroot/benson/benson3/src/network/network.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** network.h 8 Oct 2003 02:53:53 -0000 1.6
--- network.h 8 Oct 2003 03:15:02 -0000 1.7
***************
*** 17,20 ****
--- 17,21 ----
#define ID_MAXSIZE ID_MAXSIZE_v31
+ #define STA_MAXSIZE STA_MAXSIZE_v31
#define DST_MAXSIZE DST_MAXSIZE_v31
#define AGT_MAXSIZE AGT_MAXSIZE_v31
Index: v31_network_client.c
===================================================================
RCS file: /cvsroot/benson/benson3/src/network/v31_network_client.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** v31_network_client.c 8 Oct 2003 02:53:53 -0000 1.4
--- v31_network_client.c 8 Oct 2003 03:15:02 -0000 1.5
***************
*** 63,66 ****
--- 63,67 ----
/* Read the response from the server, atleast the header portion, more should be coming. */
+ rc = fread(&req_hdr, sizeof(bn_req_hdr), 1, connect_ctx.input);
rc = fread(&resp_hdr, sizeof(bnet_resp_v31), 1, connect_ctx.input);
if(rc < 1) {
|