Changeset 96864 in vbox for trunk/include
- Timestamp:
- Sep 26, 2022 2:38:59 PM (2 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r96813 r96864 2758 2758 # define RTTraceSetDefaultBuf RT_MANGLER(RTTraceSetDefaultBuf) 2759 2759 # define RTUdpCreateClientSocket RT_MANGLER(RTUdpCreateClientSocket) 2760 # define RTUdpCreateServerSocket RT_MANGLER(RTUdpCreateServerSocket) 2760 2761 # define RTUdpRead RT_MANGLER(RTUdpRead) 2761 2762 # define RTUdpServerCreate RT_MANGLER(RTUdpServerCreate) -
trunk/include/iprt/udp.h
r96407 r96864 175 175 RTR3DECL(int) RTUdpCreateClientSocket(const char *pszAddress, uint32_t uPort, PRTNETADDR pLocalAddr, PRTSOCKET pSock); 176 176 177 /** 178 * Create a data socket acting as a server. 179 * 180 * @returns iprt status code. 181 * @param pszAddress The address to connect to. 182 * @param uPort The port to connect to. 183 * @param pSock Where to store the handle to the established connection. 184 */ 185 RTR3DECL(int) RTUdpCreateServerSocket(const char *pszAddress, uint32_t uPort, PRTSOCKET pSock); 186 177 187 /** @} */ 178 188 RT_C_DECLS_END
Note:
See TracChangeset
for help on using the changeset viewer.