optical/NxFuncs/network/udptrans.h

17 lines
232 B
C
Raw Normal View History

2025-09-04 01:45:08 +00:00
#ifndef __UDPTRANS_H__
#define __UDPTRANS_H__
#include "ethernet.h"
void InitUdpTrans(void);
int UdpTransData(u8 * pBuff, int len);
int UdpRecvData(u8 * pBuff, int len);
SocketCtrl * GetUdpCtrlFromSocketId(int sIdx);
#endif