mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2025-01-30 16:16:04 +00:00
37 lines
776 B
HolyC
37 lines
776 B
HolyC
|
U0 UDPSocketTest()
|
||
|
{
|
||
|
CUDPSocket *u0 = UDPSocket(AF_INET);
|
||
|
CUDPSocket *u1 = UDPSocket(AF_INET);
|
||
|
CSocketAddressIPV4 *i0 = CAlloc(sizeof(CSocketAddressIPV4));
|
||
|
CSocketAddressIPV4 *i1 = CAlloc(sizeof(CSocketAddressIPV4));
|
||
|
|
||
|
i0->port = EndianU16(80);
|
||
|
i0->family = AF_INET;
|
||
|
i0->address.address = 0xDEADBEEF;
|
||
|
|
||
|
i1->port = EndianU16(68);
|
||
|
i1->family = AF_INET;
|
||
|
i1->address.address = 0xF00DBABE;
|
||
|
|
||
|
UDPSocketBind(u0, i0);
|
||
|
UDPSocketBind(u1, i1);
|
||
|
|
||
|
"Before remove first socket\n";
|
||
|
ClassRep(udp_globals.bound_socket_tree,, 9);
|
||
|
"\n";
|
||
|
|
||
|
UDPSocketClose(u0);
|
||
|
|
||
|
"After remove first socket\n";
|
||
|
ClassRep(udp_globals.bound_socket_tree,, 9);
|
||
|
"\n";
|
||
|
|
||
|
UDPSocketClose(u1);
|
||
|
|
||
|
"After both sockets removed\n";
|
||
|
ClassRep(udp_globals.bound_socket_tree,, 9);
|
||
|
"\n";
|
||
|
|
||
|
}
|
||
|
|
||
|
UDPSocketTest;
|