src/network/core/udp.c
changeset 5770 15abf566c92e
parent 5726 8f399788f6c9
child 5772 fbb42af982b4
equal deleted inserted replaced
5769:fca2a3a7e1b4 5770:15abf566c92e
   117 		/* Put the position on the right place */
   117 		/* Put the position on the right place */
   118 		p.pos = 2;
   118 		p.pos = 2;
   119 		p.next = NULL;
   119 		p.next = NULL;
   120 
   120 
   121 		/* Handle the packet */
   121 		/* Handle the packet */
   122 		NetworkHandleUDPPacket(&p, &client_addr);
   122 		NetworkHandleUDPPacket(udp, &p, &client_addr);
   123 	}
   123 	}
   124 }
   124 }
   125 
   125 
   126 
   126 
   127 /**
   127 /**