X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Modules%2FIPStack%2Fudp.c;h=194c62b2fed3099d36d77a215f295c94ddb6695e;hb=720eb9f95dd3272e980095cf24ee21fb9250adb3;hp=c57f284ca2bfffd65ca4f74c01e67b667c573455;hpb=0f48b41ce8edd3b6d549d641b35901e4b51a5132;p=tpg%2Facess2.git diff --git a/Modules/IPStack/udp.c b/Modules/IPStack/udp.c index c57f284c..194c62b2 100644 --- a/Modules/IPStack/udp.c +++ b/Modules/IPStack/udp.c @@ -8,6 +8,12 @@ // === PROTOTYPES === void UDP_Initialise(); void UDP_GetPacket(tInterface *Interface, void *Address, int Length, void *Buffer); +// --- Channel +tVFS_Node *UDP_Channel_Init(tInterface *Interface); +Uint64 UDP_Channel_Read(tVFS_Node *Node, Uint64 Offset, Uint64 Length, void *Buffer); +Uint64 UDP_Channel_Write(tVFS_Node *Node, Uint64 Offset, Uint64 Length, void *Buffer); + int UDP_Channel_IOCtl(tVFS_Node *Node, int ID, void *Data); +void UDP_Channel_Close(tVFS_Node *Node); // === GLOBALS ===