Searched defs:pfnServe (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Runtime/r3/
H A Dudp.cpp110 PFNRTUDPSERVE pfnServe; member in struct:RTUDPSERVER
180 * The thread will loop waiting for datagrams and call pfnServe for
181 * each of the incoming datagrams in turn. The pfnServe function can
191 * @param pfnServe The function which will handle incoming datagrams.
192 * @param pvUser User argument passed to pfnServe.
196 PFNRTUDPSERVE pfnServe, void *pvUser, PPRTUDPSERVER ppServer)
202 AssertPtrReturn(pfnServe, VERR_INVALID_POINTER);
219 pServer->pfnServe = pfnServe;
322 pServer->pfnServe
195 RTUdpServerCreate(const char *pszAddress, unsigned uPort, RTTHREADTYPE enmType, const char *pszThrdName, PFNRTUDPSERVE pfnServe, void *pvUser, PPRTUDPSERVER ppServer) argument
357 RTUdpServerListen(PRTUDPSERVER pServer, PFNRTUDPSERVE pfnServe, void *pvUser) argument
[all...]
H A Dtcp.cpp139 PFNRTTCPSERVE pfnServe; member in struct:RTTCPSERVER
210 * The thread will loop accepting connections and call pfnServe for
211 * each of the incoming connections in turn. The pfnServe function can
221 * @param pfnServe The function which will serve a new client connection.
222 * @param pvUser User argument passed to pfnServe.
226 PFNRTTCPSERVE pfnServe, void *pvUser, PPRTTCPSERVER ppServer)
232 AssertPtrReturn(pfnServe, VERR_INVALID_POINTER);
249 pServer->pfnServe = pfnServe;
355 pServer->pfnServe
225 RTTcpServerCreate(const char *pszAddress, unsigned uPort, RTTHREADTYPE enmType, const char *pszThrdName, PFNRTTCPSERVE pfnServe, void *pvUser, PPRTTCPSERVER ppServer) argument
390 RTTcpServerListen(PRTTCPSERVER pServer, PFNRTTCPSERVE pfnServe, void *pvUser) argument
[all...]

Completed in 47 milliseconds