VirtualBox

source: vbox/trunk/include/iprt/tcp.h@ 35517

Last change on this file since 35517 was 33540, checked in by vboxsync, 14 years ago

*: spelling fixes, thanks Timeless!

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 15.4 KB
Line 
1/** @file
2 * IPRT - TCP/IP.
3 */
4
5/*
6 * Copyright (C) 2006-2010 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_tcp_h
27#define ___iprt_tcp_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31#include <iprt/thread.h>
32#include <iprt/net.h>
33#include <iprt/sg.h>
34#include <iprt/socket.h>
35
36#ifdef IN_RING0
37# error "There are no RTFile APIs available Ring-0 Host Context!"
38#endif
39
40
41RT_C_DECLS_BEGIN
42
43/** @defgroup grp_rt_tcp RTTcp - TCP/IP
44 * @ingroup grp_rt
45 * @{
46 */
47
48
49/**
50 * Serve a TCP Server connection.
51 *
52 * @returns iprt status code.
53 * @returns VERR_TCP_SERVER_STOP to terminate the server loop forcing
54 * the RTTcpCreateServer() call to return.
55 * @param Sock The socket which the client is connected to.
56 * The call will close this socket.
57 * @param pvUser User argument.
58 */
59typedef DECLCALLBACK(int) FNRTTCPSERVE(RTSOCKET Sock, void *pvUser);
60/** Pointer to a RTTCPSERVE(). */
61typedef FNRTTCPSERVE *PFNRTTCPSERVE;
62
63/**
64 * Create single connection at a time TCP Server in a separate thread.
65 *
66 * The thread will loop accepting connections and call pfnServe for
67 * each of the incoming connections in turn. The pfnServe function can
68 * return VERR_TCP_SERVER_STOP too terminate this loop. RTTcpServerDestroy()
69 * should be used to terminate the server.
70 *
71 * @returns iprt status code.
72 * @param pszAddress The address for creating a listening socket.
73 * If NULL or empty string the server is bound to all interfaces.
74 * @param uPort The port for creating a listening socket.
75 * @param enmType The thread type.
76 * @param pszThrdName The name of the worker thread.
77 * @param pfnServe The function which will serve a new client connection.
78 * @param pvUser User argument passed to pfnServe.
79 * @param ppServer Where to store the serverhandle.
80 */
81RTR3DECL(int) RTTcpServerCreate(const char *pszAddress, unsigned uPort, RTTHREADTYPE enmType, const char *pszThrdName,
82 PFNRTTCPSERVE pfnServe, void *pvUser, PPRTTCPSERVER ppServer);
83
84/**
85 * Create single connection at a time TCP Server.
86 * The caller must call RTTcpServerListen() to actually start the server.
87 *
88 * @returns iprt status code.
89 * @param pszAddress The address for creating a listening socket.
90 * If NULL the server is bound to all interfaces.
91 * @param uPort The port for creating a listening socket.
92 * @param ppServer Where to store the serverhandle.
93 */
94RTR3DECL(int) RTTcpServerCreateEx(const char *pszAddress, uint32_t uPort, PPRTTCPSERVER ppServer);
95
96/**
97 * Closes down and frees a TCP Server.
98 * This will also terminate any open connections to the server.
99 *
100 * @returns iprt status code.
101 * @param pServer Handle to the server.
102 */
103RTR3DECL(int) RTTcpServerDestroy(PRTTCPSERVER pServer);
104
105/**
106 * Listen for incoming connections.
107 *
108 * The function will loop accepting connections and call pfnServe for
109 * each of the incoming connections in turn. The pfnServe function can
110 * return VERR_TCP_SERVER_STOP too terminate this loop. A stopped server
111 * can only be destroyed.
112 *
113 * @returns iprt status code.
114 * @param pServer The server handle as returned from RTTcpServerCreateEx().
115 * @param pfnServe The function which will serve a new client connection.
116 * @param pvUser User argument passed to pfnServe.
117 */
118RTR3DECL(int) RTTcpServerListen(PRTTCPSERVER pServer, PFNRTTCPSERVE pfnServe, void *pvUser);
119
120/**
121 * Listen and accept one incoming connection.
122 *
123 * This is an alternative to RTTcpServerListen for the use the callbacks are not
124 * possible.
125 *
126 * @returns IPRT status code.
127 * @retval VERR_TCP_SERVER_SHUTDOWN if shut down by RTTcpServerShutdown.
128 * @retval VERR_INTERRUPTED if the listening was interrupted.
129 *
130 * @param pServer The server handle as returned from RTTcpServerCreateEx().
131 * @param phClientSocket Where to return the socket handle to the client
132 * connection (on success only). This must be closed
133 * by calling RTTcpServerDisconnectClient2().
134 */
135RTR3DECL(int) RTTcpServerListen2(PRTTCPSERVER pServer, PRTSOCKET phClientSocket);
136
137/**
138 * Terminate the open connection to the server.
139 *
140 * @returns iprt status code.
141 * @param pServer Handle to the server.
142 */
143RTR3DECL(int) RTTcpServerDisconnectClient(PRTTCPSERVER pServer);
144
145/**
146 * Terminates an open client connect when using RTTcpListen2
147 *
148 * @returns IPRT status code.
149 * @param hClientSocket The client socket handle. This will be invalid upon
150 * return, whether successful or not. NIL is quietly
151 * ignored (VINF_SUCCESS).
152 */
153RTR3DECL(int) RTTcpServerDisconnectClient2(RTSOCKET hClientSocket);
154
155/**
156 * Shuts down the server, leaving client connections open.
157 *
158 * @returns IPRT status code.
159 * @param pServer Handle to the server.
160 */
161RTR3DECL(int) RTTcpServerShutdown(PRTTCPSERVER pServer);
162
163/**
164 * Connect (as a client) to a TCP Server.
165 *
166 * @returns iprt status code.
167 * @param pszAddress The address to connect to.
168 * @param uPort The port to connect to.
169 * @param pSock Where to store the handle to the established connection.
170 */
171RTR3DECL(int) RTTcpClientConnect(const char *pszAddress, uint32_t uPort, PRTSOCKET pSock);
172
173/**
174 * Close a socket returned by RTTcpClientConnect().
175 *
176 * @returns iprt status code.
177 * @param Sock Socket descriptor.
178 */
179RTR3DECL(int) RTTcpClientClose(RTSOCKET Sock);
180
181/**
182 * Close a socket returned by RTTcpClientConnect().
183 *
184 * @returns iprt status code.
185 * @param hSocket The socket handle.
186 * @param fGracefulShutdown If true, try do a graceful shutdown of the
187 * outgoing pipe and draining any lingering input.
188 * This is sometimes better for the server side.
189 * If false, just close the connection without
190 * further ado.
191 */
192RTR3DECL(int) RTTcpClientCloseEx(RTSOCKET Sock, bool fGracefulShutdown);
193
194/**
195 * Receive data from a socket.
196 *
197 * @returns iprt status code.
198 * @param Sock Socket descriptor.
199 * @param pvBuffer Where to put the data we read.
200 * @param cbBuffer Read buffer size.
201 * @param pcbRead Number of bytes read.
202 * If NULL the entire buffer will be filled upon successful return.
203 * If not NULL a partial read can be done successfully.
204 */
205RTR3DECL(int) RTTcpRead(RTSOCKET Sock, void *pvBuffer, size_t cbBuffer, size_t *pcbRead);
206
207/**
208 * Send data to a socket.
209 *
210 * @returns iprt status code.
211 * @retval VERR_INTERRUPTED if interrupted before anything was written.
212 *
213 * @param Sock Socket descriptor.
214 * @param pvBuffer Buffer to write data to socket.
215 * @param cbBuffer How much to write.
216 */
217RTR3DECL(int) RTTcpWrite(RTSOCKET Sock, const void *pvBuffer, size_t cbBuffer);
218
219/**
220 * Flush socket write buffers.
221 *
222 * @returns iprt status code.
223 * @param Sock Socket descriptor.
224 */
225RTR3DECL(int) RTTcpFlush(RTSOCKET Sock);
226
227/**
228 * Enables or disables delaying sends to coalesce packets.
229 *
230 * The TCP/IP stack usually uses the Nagle algorithm (RFC 896) to implement the
231 * coalescing.
232 *
233 * @returns iprt status code.
234 * @param Sock Socket descriptor.
235 * @param fEnable When set to true enables coalescing.
236 */
237RTR3DECL(int) RTTcpSetSendCoalescing(RTSOCKET Sock, bool fEnable);
238
239/**
240 * Socket I/O multiplexing.
241 * Checks if the socket is ready for reading.
242 *
243 * @returns iprt status code.
244 * @param Sock Socket descriptor.
245 * @param cMillies Number of milliseconds to wait for the socket.
246 * Use RT_INDEFINITE_WAIT to wait for ever.
247 */
248RTR3DECL(int) RTTcpSelectOne(RTSOCKET Sock, RTMSINTERVAL cMillies);
249
250/**
251 * Socket I/O multiplexing
252 * Checks if the socket is ready for one of the given events.
253 *
254 * @returns iprt status code.
255 * @param Sock Socket descriptor.
256 * @param fEvents Event mask to wait for.
257 * Use the RTSOCKET_EVT_* defines.
258 * @param pfEvents Where to store the event mask on return.
259 * @param cMillies Number of milliseconds to wait for the socket.
260 * Use RT_INDEFINITE_WAIT to wait for ever.
261 */
262RTR3DECL(int) RTTcpSelectOneEx(RTSOCKET Sock, uint32_t fEvents, uint32_t *pfEvents,
263 RTMSINTERVAL cMillies);
264
265#if 0 /* skipping these for now - RTTcpServer* handles this. */
266/**
267 * Listen for connection on a socket.
268 *
269 * @returns iprt status code.
270 * @param Sock Socket descriptor.
271 * @param cBackLog The maximum length the queue of pending connections
272 * may grow to.
273 */
274RTR3DECL(int) RTTcpListen(RTSOCKET Sock, int cBackLog);
275
276/**
277 * Accept a connection on a socket.
278 *
279 * @returns iprt status code.
280 * @param Sock Socket descriptor.
281 * @param uPort The port for accepting connection.
282 * @param pSockAccepted Where to store the handle to the accepted connection.
283 */
284RTR3DECL(int) RTTcpAccept(RTSOCKET Sock, unsigned uPort, PRTSOCKET pSockAccepted);
285
286#endif
287
288/**
289 * Gets the address of the local side.
290 *
291 * @returns IPRT status code.
292 * @param Sock Socket descriptor.
293 * @param pAddr Where to store the local address on success.
294 */
295RTR3DECL(int) RTTcpGetLocalAddress(RTSOCKET Sock, PRTNETADDR pAddr);
296
297/**
298 * Gets the address of the other party.
299 *
300 * @returns IPRT status code.
301 * @param Sock Socket descriptor.
302 * @param pAddr Where to store the peer address on success.
303 */
304RTR3DECL(int) RTTcpGetPeerAddress(RTSOCKET Sock, PRTNETADDR pAddr);
305
306/**
307 * Send data from a scatter/gather buffer to a socket.
308 *
309 * @returns iprt status code.
310 * @retval VERR_INTERRUPTED if interrupted before anything was written.
311 *
312 * @param Sock Socket descriptor.
313 * @param pSgBuf Scatter/gather buffer to write data to socket.
314 */
315RTR3DECL(int) RTTcpSgWrite(RTSOCKET Sock, PCRTSGBUF pSgBuf);
316
317
318/**
319 * Send data from multiple buffers to a socket.
320 *
321 * This is convenience wrapper around the RTSocketSgWrite and RTSgBufInit calls
322 * for lazy coders. The "L" in the function name is short for "list" just like
323 * in the execl libc API.
324 *
325 * @returns IPRT status code.
326 * @retval VERR_INTERRUPTED if interrupted before anything was written.
327 *
328 * @param hSocket The socket handle.
329 * @param cSegs The number of data segments in the following
330 * ellipsis.
331 * @param ... Pairs of buffer pointers (void const *) and buffer
332 * sizes (size_t). Make 101% sure the pointer is
333 * really size_t.
334 */
335RTR3DECL(int) RTTcpSgWriteL(RTSOCKET hSocket, size_t cSegs, ...);
336
337/**
338 * Send data from multiple buffers to a socket.
339 *
340 * This is convenience wrapper around the RTSocketSgWrite and RTSgBufInit calls
341 * for lazy coders. The "L" in the function name is short for "list" just like
342 * in the execl libc API.
343 *
344 * @returns IPRT status code.
345 * @retval VERR_INTERRUPTED if interrupted before anything was written.
346 *
347 * @param hSocket The socket handle.
348 * @param cSegs The number of data segments in the following
349 * argument list.
350 * @param va Pairs of buffer pointers (void const *) and buffer
351 * sizes (size_t). Make 101% sure the pointer is
352 * really size_t.
353 */
354RTR3DECL(int) RTTcpSgWriteLV(RTSOCKET hSocket, size_t cSegs, va_list va);
355
356/**
357 * Receive data from a socket.
358 *
359 * This version doesn't block if there is no data on the socket.
360 *
361 * @returns IPRT status code.
362 *
363 * @param Sock Socket descriptor.
364 * @param pvBuffer Where to put the data we read.
365 * @param cbBuffer Read buffer size.
366 * @param pcbRead Number of bytes read.
367 */
368RTR3DECL(int) RTTcpReadNB(RTSOCKET Sock, void *pvBuffer, size_t cbBuffer, size_t *pcbRead);
369
370/**
371 * Send data to a socket.
372 *
373 * This version doesn't block if there is not enough room for the message.
374 *
375 * @returns IPRT status code.
376 *
377 * @param Sock Socket descriptor.
378 * @param pvBuffer Buffer to write data to socket.
379 * @param cbBuffer How much to write.
380 * @param pcbWritten Number of bytes written.
381 */
382RTR3DECL(int) RTTcpWriteNB(RTSOCKET Sock, const void *pvBuffer, size_t cbBuffer, size_t *pcbWritten);
383
384/**
385 * Send data from a scatter/gather buffer to a socket.
386 *
387 * This version doesn't block if there is not enough room for the message.
388 *
389 * @returns iprt status code.
390 * @retval VERR_INTERRUPTED if interrupted before anything was written.
391 *
392 * @param Sock Socket descriptor.
393 * @param pSgBuf Scatter/gather buffer to write data to socket.
394 * @param pcbWritten Number of bytes written.
395 */
396RTR3DECL(int) RTTcpSgWriteNB(RTSOCKET Sock, PCRTSGBUF pSgBuf, size_t *pcbWritten);
397
398
399/**
400 * Send data from multiple buffers to a socket.
401 *
402 * This version doesn't block if there is not enough room for the message.
403 * This is convenience wrapper around the RTSocketSgWrite and RTSgBufInit calls
404 * for lazy coders. The "L" in the function name is short for "list" just like
405 * in the execl libc API.
406 *
407 * @returns IPRT status code.
408 *
409 * @param hSocket The socket handle.
410 * @param cSegs The number of data segments in the following
411 * ellipsis.
412 * @param pcbWritten Number of bytes written.
413 * @param ... Pairs of buffer pointers (void const *) and buffer
414 * sizes (size_t). Make 101% sure the pointer is
415 * really size_t.
416 */
417RTR3DECL(int) RTTcpSgWriteLNB(RTSOCKET hSocket, size_t cSegs, size_t *pcbWritten, ...);
418
419/**
420 * Send data from multiple buffers to a socket.
421 *
422 * This version doesn't block if there is not enough room for the message.
423 * This is convenience wrapper around the RTSocketSgWrite and RTSgBufInit calls
424 * for lazy coders. The "L" in the function name is short for "list" just like
425 * in the execl libc API.
426 *
427 * @returns IPRT status code.
428 *
429 * @param hSocket The socket handle.
430 * @param cSegs The number of data segments in the following
431 * argument list.
432 * @param pcbWritten Number of bytes written.
433 * @param va Pairs of buffer pointers (void const *) and buffer
434 * sizes (size_t). Make 101% sure the pointer is
435 * really size_t.
436 */
437RTR3DECL(int) RTTcpSgWriteLVNB(RTSOCKET hSocket, size_t cSegs, size_t *pcbWritten, va_list va);
438
439/** @} */
440RT_C_DECLS_END
441
442#endif
443
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette