Difference for arch/win32/ipx_win.c from version 1.4 to 1.5


version 1.4 version 1.5
Line 7
 
Line 7
 //#include <errno.h>  //#include <errno.h>
   
 #include "ipx_drv.h"  #include "ipx_drv.h"
   #include "netstats.h"
   
 #include "mono.h"  #include "mono.h"
   
Line 162
 
Line 163
   
   ipx_win_GetMyAddress();    ipx_win_GetMyAddress();
   
     net_stats_init(30); // IPX header overhead = 30 bytes.
   
   return 0;    return 0;
 }  }
   
Line 189
 
Line 192
   ipxs.sa_socket=htons(mysock.socket);    ipxs.sa_socket=htons(mysock.socket);
 //  ipxs.sa_type = IPXHeader->PacketType;  //  ipxs.sa_type = IPXHeader->PacketType;
   /* ipxs.sipx_port=htons(0x452); */    /* ipxs.sipx_port=htons(0x452); */
     net_stats_sent(dataLen);
   return sendto(mysock.fd, data, dataLen, 0,    return sendto(mysock.fd, data, dataLen, 0,
       (struct sockaddr *) &ipxs, sizeof(ipxs));        (struct sockaddr *) &ipxs, sizeof(ipxs));
 }  }
Line 208
 
Line 212
  rd->dst_socket = mysock.socket;   rd->dst_socket = mysock.socket;
 // rd->pkt_type = ipxs.sipx_type;  // rd->pkt_type = ipxs.sipx_type;
      
    net_stats_recv(size);
  return size;   return size;
 }  }
   

Legend:
line(s) removed in v.1.4 
line(s) changed
 line(s) added in v.1.5