]>
Commit | Line | Data |
---|---|---|
105521d1 GRG |
1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
2 | %% Name: socket.tex | |
3 | %% Purpose: wxSocket docs | |
4 | %% Author: Guillermo Rodriguez Garcia <guille@iies.es> | |
5 | %% Modified by: | |
6 | %% Created: 1999 | |
7 | %% RCS-ID: $Id$ | |
fc2171bd JS |
8 | %% Copyright: (c) wxWidgets team |
9 | %% License: wxWidgets license | |
105521d1 GRG |
10 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
11 | ||
e79848ac GL |
12 | \section{\class{wxSocketBase}}\label{wxsocketbase} |
13 | ||
7cd315c6 GRG |
14 | wxSocketBase is the base class for all socket-related objects, and it |
15 | defines all basic IO functionality. | |
16 | ||
e79848ac GL |
17 | \wxheading{Derived from} |
18 | ||
5adbbc29 | 19 | \helpref{wxObject}{wxobject} |
e79848ac | 20 | |
954b8ae6 JS |
21 | \wxheading{Include files} |
22 | ||
23 | <wx/socket.h> | |
24 | ||
407f3681 | 25 | \wxheading{wxSocket errors} |
aa6d9706 GL |
26 | |
27 | \twocolwidtha{7cm} | |
28 | \begin{twocollist}\itemsep=0pt | |
29 | \twocolitem{{\bf wxSOCKET\_NOERROR}}{No error happened.} | |
30 | \twocolitem{{\bf wxSOCKET\_INVOP}}{Invalid operation.} | |
31 | \twocolitem{{\bf wxSOCKET\_IOERR}}{Input/Output error.} | |
32 | \twocolitem{{\bf wxSOCKET\_INVADDR}}{Invalid address passed to wxSocket.} | |
33 | \twocolitem{{\bf wxSOCKET\_INVSOCK}}{Invalid socket (uninitialized).} | |
34 | \twocolitem{{\bf wxSOCKET\_NOHOST}}{No corresponding host.} | |
35 | \twocolitem{{\bf wxSOCKET\_INVPORT}}{Invalid port.} | |
cf85cb95 GRG |
36 | \twocolitem{{\bf wxSOCKET\_WOULDBLOCK}}{The socket is non-blocking and the operation would block.} |
37 | \twocolitem{{\bf wxSOCKET\_TIMEDOUT}}{The timeout for this operation expired.} | |
aa6d9706 | 38 | \twocolitem{{\bf wxSOCKET\_MEMERR}}{Memory exhausted.} |
a4625b8c | 39 | \end{twocollist} |
aa6d9706 | 40 | |
7e9a386e | 41 | \wxheading{wxSocket events} |
5a96d2f4 | 42 | |
aa6d9706 GL |
43 | \twocolwidtha{7cm} |
44 | \begin{twocollist}\itemsep=0pt | |
a4625b8c | 45 | \twocolitem{{\bf wxSOCKET\_INPUT}}{There is data available for reading.} |
aa6d9706 | 46 | \twocolitem{{\bf wxSOCKET\_OUTPUT}}{The socket is ready to be written to.} |
f6bcfd97 | 47 | \twocolitem{{\bf wxSOCKET\_CONNECTION}}{Incoming connection request (server), or successful connection establishment (client).} |
cf85cb95 | 48 | \twocolitem{{\bf wxSOCKET\_LOST}}{The connection has been closed.} |
a4625b8c | 49 | \end{twocollist} |
5a96d2f4 | 50 | |
cf85cb95 GRG |
51 | A brief note on how to use these events: |
52 | ||
a4625b8c GRG |
53 | The {\bf wxSOCKET\_INPUT} event will be issued whenever there is data |
54 | available for reading. This will be the case if the input queue was | |
55 | empty and new data arrives, or if the application has read some data | |
56 | yet there is still more data available. This means that the application | |
fa482912 | 57 | does not need to read all available data in response to a |
a4625b8c GRG |
58 | {\bf wxSOCKET\_INPUT} event, as more events will be produced as |
59 | necessary. | |
60 | ||
61 | The {\bf wxSOCKET\_OUTPUT} event is issued when a socket is first | |
105521d1 GRG |
62 | connected with \helpref{Connect}{wxsocketclientconnect} or accepted |
63 | with \helpref{Accept}{wxsocketserveraccept}. After that, new | |
a4625b8c GRG |
64 | events will be generated only after an output operation fails |
65 | with {\bf wxSOCKET\_WOULDBLOCK} and buffer space becomes available | |
66 | again. This means that the application should assume that it | |
fa482912 | 67 | can write data to the socket until an {\bf wxSOCKET\_WOULDBLOCK} |
a4625b8c | 68 | error occurs; after this, whenever the socket becomes writable |
fa482912 | 69 | again the application will be notified with another |
a4625b8c GRG |
70 | {\bf wxSOCKET\_OUTPUT} event. |
71 | ||
72 | The {\bf wxSOCKET\_CONNECTION} event is issued when a delayed connection | |
2edb0bde | 73 | request completes successfully (client) or when a new connection arrives |
a4625b8c | 74 | at the incoming queue (server). |
cf85cb95 GRG |
75 | |
76 | The {\bf wxSOCKET\_LOST} event is issued when a close indication is | |
77 | received for the socket. This means that the connection broke down or | |
a4625b8c | 78 | that it was closed by the peer. Also, this event will be issued if |
f6bcfd97 | 79 | a connection request fails. |
cf85cb95 | 80 | |
e79848ac GL |
81 | \wxheading{Event handling} |
82 | ||
7cd315c6 | 83 | To process events coming from a socket object, use the following event |
f6bcfd97 BP |
84 | handler macro to direct events to member functions that take |
85 | a \helpref{wxSocketEvent}{wxsocketevent} argument. | |
e79848ac | 86 | |
42ff6409 | 87 | \twocolwidtha{7cm}% |
e79848ac | 88 | \begin{twocollist}\itemsep=0pt |
7cd315c6 | 89 | \twocolitem{{\bf EVT\_SOCKET(id, func)}}{Process a wxEVT\_SOCKET event.} |
a4625b8c | 90 | \end{twocollist} |
e79848ac | 91 | |
e79848ac GL |
92 | \wxheading{See also} |
93 | ||
407f3681 JS |
94 | \helpref{wxSocketEvent}{wxsocketevent}, |
95 | \helpref{wxSocketClient}{wxsocketclient}, | |
fa482912 | 96 | \helpref{wxSocketServer}{wxsocketserver}, |
105521d1 | 97 | \helpref{Sockets sample}{samplesockets} |
e79848ac GL |
98 | |
99 | % --------------------------------------------------------------------------- | |
7cd315c6 | 100 | % Function groups |
e79848ac | 101 | % --------------------------------------------------------------------------- |
105521d1 | 102 | |
7cd315c6 GRG |
103 | \latexignore{\rtfignore{\wxheading{Function groups}}} |
104 | ||
105 | \membersection{Construction and destruction} | |
106 | ||
107 | \helpref{wxSocketBase}{wxsocketbaseconstruct}\\ | |
5cb91489 | 108 | \helpref{\destruct{wxSocketBase}}{wxsocketbasedestruct}\\ |
f6bcfd97 | 109 | \helpref{Destroy}{wxsocketbasedestroy} |
7cd315c6 GRG |
110 | |
111 | \membersection{Socket state} | |
112 | ||
113 | Functions to retrieve current state and miscellaneous info. | |
114 | ||
115 | \helpref{Error}{wxsocketbaseerror}\\ | |
116 | \helpref{GetLocal}{wxsocketbasegetlocal}\\ | |
117 | \helpref{GetPeer}{wxsocketbasegetpeer} | |
118 | \helpref{IsConnected}{wxsocketbaseisconnected}\\ | |
119 | \helpref{IsData}{wxsocketbaseisdata}\\ | |
120 | \helpref{IsDisconnected}{wxsocketbaseisdisconnected}\\ | |
121 | \helpref{LastCount}{wxsocketbaselastcount}\\ | |
122 | \helpref{LastError}{wxsocketbaselasterror}\\ | |
123 | \helpref{Ok}{wxsocketbaseok}\\ | |
124 | \helpref{SaveState}{wxsocketbasesavestate}\\ | |
125 | \helpref{RestoreState}{wxsocketbaserestorestate} | |
126 | ||
127 | \membersection{Basic IO} | |
128 | ||
129 | Functions that perform basic IO functionality. | |
130 | ||
131 | \helpref{Close}{wxsocketbaseclose}\\ | |
132 | \helpref{Discard}{wxsocketbasediscard}\\ | |
133 | \helpref{Peek}{wxsocketbasepeek}\\ | |
134 | \helpref{Read}{wxsocketbaseread}\\ | |
135 | \helpref{ReadMsg}{wxsocketbasereadmsg}\\ | |
136 | \helpref{Unread}{wxsocketbaseunread}\\ | |
137 | \helpref{Write}{wxsocketbasewrite}\\ | |
138 | \helpref{WriteMsg}{wxsocketbasewritemsg} | |
139 | ||
140 | Functions that perform a timed wait on a certain IO condition. | |
141 | ||
5adbbc29 | 142 | \helpref{InterruptWait}{wxsocketbaseinterruptwait}\\ |
7cd315c6 | 143 | \helpref{Wait}{wxsocketbasewait}\\ |
5adbbc29 | 144 | \helpref{WaitForLost}{wxsocketbasewaitforlost}\\ |
7cd315c6 GRG |
145 | \helpref{WaitForRead}{wxsocketbasewaitforread}\\ |
146 | \helpref{WaitForWrite}{wxsocketbasewaitforwrite}\\ | |
5adbbc29 GRG |
147 | |
148 | and also: | |
149 | ||
150 | \helpref{wxSocketServer::WaitForAccept}{wxsocketserverwaitforaccept}\\ | |
151 | \helpref{wxSocketClient::WaitOnConnect}{wxsocketclientwaitonconnect} | |
7cd315c6 GRG |
152 | |
153 | Functions that allow applications to customize socket IO as needed. | |
154 | ||
5adbbc29 | 155 | \helpref{GetFlags}{wxsocketbasegetflags}\\ |
7cd315c6 GRG |
156 | \helpref{SetFlags}{wxsocketbasesetflags}\\ |
157 | \helpref{SetTimeout}{wxsocketbasesettimeout} | |
158 | ||
159 | \membersection{Handling socket events} | |
160 | ||
161 | Functions that allow applications to receive socket events. | |
162 | ||
163 | \helpref{Notify}{wxsocketbasenotify}\\ | |
164 | \helpref{SetNotify}{wxsocketbasesetnotify}\\ | |
5adbbc29 GRG |
165 | \helpref{GetClientData}{wxsocketbasegetclientdata}\\ |
166 | \helpref{SetClientData}{wxsocketbasesetclientdata}\\ | |
7cd315c6 GRG |
167 | \helpref{SetEventHandler}{wxsocketbaseseteventhandler} |
168 | ||
169 | Callback functions are also available, but they are provided for backwards | |
5adbbc29 GRG |
170 | compatibility only. Their use is strongly discouraged in favour of events, |
171 | and should be considered deprecated. Callbacks may be unsupported in future | |
fc2171bd | 172 | releases of wxWidgets. |
7cd315c6 GRG |
173 | |
174 | \helpref{Callback}{wxsocketbasecallback}\\ | |
175 | \helpref{CallbackData}{wxsocketbasecallbackdata} | |
176 | ||
177 | ||
178 | % --------------------------------------------------------------------------- | |
179 | % Members here | |
180 | % --------------------------------------------------------------------------- | |
181 | ||
182 | \helponly{\insertatlevel{2}{ | |
e79848ac | 183 | |
7cd315c6 GRG |
184 | \wxheading{Members} |
185 | ||
186 | }} | |
187 | ||
188 | \membersection{wxSocketBase::wxSocketBase}\label{wxsocketbaseconstruct} | |
42ff6409 | 189 | |
e79848ac GL |
190 | \func{}{wxSocketBase}{\void} |
191 | ||
fa482912 JS |
192 | Default constructor. Don't use it directly; instead, use |
193 | \helpref{wxSocketClient}{wxsocketclient} to construct a socket client, or | |
7cd315c6 | 194 | \helpref{wxSocketServer}{wxsocketserver} to construct a socket server. |
e79848ac | 195 | |
7cd315c6 | 196 | \membersection{wxSocketBase::\destruct{wxSocketBase}}\label{wxsocketbasedestruct} |
e79848ac GL |
197 | |
198 | \func{}{\destruct{wxSocketBase}}{\void} | |
199 | ||
5cb91489 | 200 | Destructor. Do not destroy a socket using the delete operator directly; |
5adbbc29 GRG |
201 | use \helpref{Destroy}{wxsocketbasedestroy} instead. Also, do not create |
202 | socket objects in the stack. | |
e79848ac | 203 | |
7cd315c6 GRG |
204 | % |
205 | % Callback | |
206 | % | |
207 | \membersection{wxSocketBase::Callback}\label{wxsocketbasecallback} | |
208 | ||
209 | \func{wxSocketBase::wxSockCbk}{Callback}{\param{wxSocketBase::wxSockCbk}{ callback}} | |
210 | ||
211 | You can setup a callback function to be called when an event occurs. | |
212 | The function will be called only for those events for which notification | |
fa482912 | 213 | has been enabled with \helpref{Notify}{wxsocketbasenotify} and |
7cd315c6 GRG |
214 | \helpref{SetNotify}{wxsocketbasesetnotify}. The prototype of the |
215 | callback must be as follows: | |
216 | ||
217 | \begin{verbatim} | |
218 | void SocketCallback(wxSocketBase& sock, wxSocketNotify evt, char *cdata); | |
219 | \end{verbatim} | |
220 | ||
221 | The first parameter is a reference to the socket object in which the | |
f6bcfd97 | 222 | event occurred. The second parameter tells you which event occurred. |
7cd315c6 | 223 | (See \helpref{wxSocket events}{wxsocketbase}). The third parameter |
5adbbc29 | 224 | is the user data you specified using \helpref{CallbackData}{wxsocketbasecallbackdata}. |
7cd315c6 | 225 | |
7cd315c6 GRG |
226 | \wxheading{Return value} |
227 | ||
228 | A pointer to the previous callback. | |
229 | ||
f6bcfd97 BP |
230 | \wxheading{Remark/Warning} |
231 | ||
232 | Note that callbacks are now deprecated and unsupported, and they remain | |
233 | for backwards compatibility only. Use events instead. | |
234 | ||
7cd315c6 GRG |
235 | \wxheading{See also} |
236 | ||
237 | \helpref{wxSocketBase::CallbackData}{wxsocketbasecallbackdata}, | |
238 | \helpref{wxSocketBase::SetNotify}{wxsocketbasesetnotify}, | |
239 | \helpref{wxSocketBase::Notify}{wxsocketbasenotify} | |
e79848ac | 240 | |
5a96d2f4 | 241 | % |
7cd315c6 GRG |
242 | % CallbackData |
243 | % | |
244 | \membersection{wxSocketBase::CallbackData}\label{wxsocketbasecallbackdata} | |
245 | ||
246 | \func{char *}{CallbackData}{\param{char *}{cdata}} | |
247 | ||
248 | This function sets the the user data which will be passed to a | |
249 | callback function set via \helpref{Callback}{wxsocketbasecallback}. | |
250 | ||
7cd315c6 GRG |
251 | \wxheading{Return value} |
252 | ||
253 | A pointer to the previous user data. | |
254 | ||
f6bcfd97 BP |
255 | \wxheading{Remark/Warning} |
256 | ||
257 | Note that callbacks are now deprecated and unsupported, and they remain | |
258 | for backwards compatibility only. Use events instead. | |
259 | ||
260 | \wxheading{See also} | |
261 | ||
7cd315c6 GRG |
262 | \helpref{wxSocketBase::Callback}{wxsocketbasecallback}, |
263 | \helpref{wxSocketBase::SetNotify}{wxsocketbasesetnotify}, | |
264 | \helpref{wxSocketBase::Notify}{wxsocketbasenotify} | |
265 | ||
266 | % | |
267 | % Close | |
268 | % | |
269 | \membersection{wxSocketBase::Close}\label{wxsocketbaseclose} | |
270 | ||
271 | \func{void}{Close}{\void} | |
272 | ||
273 | This function shuts down the socket, disabling further transmission and | |
274 | reception of data; it also disables events for the socket and frees the | |
ed8297b9 | 275 | associated system resources. Upon socket destruction, Close is automatically |
f6bcfd97 BP |
276 | called, so in most cases you won't need to do it yourself, unless you |
277 | explicitly want to shut down the socket, typically to notify the peer | |
278 | that you are closing the connection. | |
7cd315c6 GRG |
279 | |
280 | \wxheading{Remark/Warning} | |
281 | ||
282 | Although Close immediately disables events for the socket, it is possible | |
283 | that event messages may be waiting in the application's event queue. The | |
284 | application must therefore be prepared to handle socket event messages | |
285 | even after calling Close. | |
286 | ||
5cb91489 | 287 | % |
6b4a39fb | 288 | % Destroy |
5cb91489 GRG |
289 | % |
290 | \membersection{wxSocketBase::Destroy}\label{wxsocketbasedestroy} | |
291 | ||
6b4a39fb | 292 | \func{bool}{Destroy}{\void} |
5cb91489 GRG |
293 | |
294 | Destroys the socket safely. Use this function instead of the delete operator, | |
295 | since otherwise socket events could reach the application even after the | |
296 | socket has been destroyed. To prevent this problem, this function appends | |
297 | the wxSocket to a list of object to be deleted on idle time, after all | |
298 | events have been processed. For the same reason, you should avoid creating | |
299 | socket objects in the stack. | |
300 | ||
301 | Destroy calls \helpref{Close}{wxsocketbaseclose} automatically. | |
302 | ||
6b4a39fb GRG |
303 | \wxheading{Return value} |
304 | ||
cc81d32f | 305 | Always true. |
6b4a39fb | 306 | |
7cd315c6 GRG |
307 | % |
308 | % Discard | |
309 | % | |
310 | \membersection{wxSocketBase::Discard}\label{wxsocketbasediscard} | |
311 | ||
312 | \func{wxSocketBase\&}{Discard}{\void} | |
313 | ||
314 | This function simply deletes all bytes in the incoming queue. This function | |
315 | always returns immediately and its operation is not affected by IO flags. | |
316 | ||
317 | Use \helpref{LastCount}{wxsocketbaselastcount} to verify the number of bytes actually discarded. | |
318 | ||
cc81d32f | 319 | If you use \helpref{Error}{wxsocketbaseerror}, it will always return false. |
7cd315c6 GRG |
320 | |
321 | % | |
322 | % Error | |
323 | % | |
324 | \membersection{wxSocketBase::Error}\label{wxsocketbaseerror} | |
325 | ||
326 | \constfunc{bool}{Error}{\void} | |
327 | ||
cc81d32f | 328 | Returns true if an error occurred in the last IO operation. |
7cd315c6 GRG |
329 | |
330 | Use this function to check for an error condition after one of the | |
331 | following calls: Discard, Peek, Read, ReadMsg, Unread, Write, WriteMsg. | |
332 | ||
5adbbc29 GRG |
333 | % |
334 | % GetClientData | |
335 | % | |
336 | \membersection{wxSocketBase::GetClientData}\label{wxsocketbasegetclientdata} | |
337 | ||
338 | \constfunc{void *}{GetClientData}{\void} | |
339 | ||
fa482912 | 340 | Returns a pointer of the client data for this socket, as set with |
5adbbc29 GRG |
341 | \helpref{SetClientData}{wxsocketbasesetclientdata} |
342 | ||
7cd315c6 GRG |
343 | % |
344 | % GetLocal | |
345 | % | |
346 | \membersection{wxSocketBase::GetLocal}\label{wxsocketbasegetlocal} | |
347 | ||
f6bcfd97 | 348 | \constfunc{bool}{GetLocal}{\param{wxSockAddress\& }{addr}} |
7cd315c6 GRG |
349 | |
350 | This function returns the local address field of the socket. The local | |
351 | address field contains the complete local address of the socket (local | |
352 | address, local port, ...). | |
353 | ||
354 | \wxheading{Return value} | |
355 | ||
cc81d32f | 356 | true if no error happened, false otherwise. |
7cd315c6 | 357 | |
5adbbc29 GRG |
358 | % |
359 | % GetFlags | |
360 | % | |
361 | \membersection{wxSocketBase::GetFlags}\label{wxsocketbasegetflags} | |
362 | ||
363 | \constfunc{wxSocketFlags}{GetFlags}{\void} | |
364 | ||
365 | Returns current IO flags, as set with \helpref{SetFlags}{wxsocketbasesetflags} | |
366 | ||
5a96d2f4 | 367 | % |
7cd315c6 GRG |
368 | % GetPeer |
369 | % | |
370 | \membersection{wxSocketBase::GetPeer}\label{wxsocketbasegetpeer} | |
5a96d2f4 | 371 | |
f6bcfd97 | 372 | \constfunc{bool}{GetPeer}{\param{wxSockAddress\& }{addr}} |
7cd315c6 GRG |
373 | |
374 | This function returns the peer address field of the socket. The peer | |
375 | address field contains the complete peer host address of the socket | |
376 | (address, port, ...). | |
377 | ||
378 | \wxheading{Return value} | |
379 | ||
cc81d32f | 380 | true if no error happened, false otherwise. |
7cd315c6 | 381 | |
5adbbc29 GRG |
382 | % |
383 | % InterruptWait | |
384 | % | |
385 | \membersection{wxSocketBase::InterruptWait}\label{wxsocketbaseinterruptwait} | |
386 | ||
387 | \func{void}{InterruptWait}{\void} | |
388 | ||
389 | Use this function to interrupt any wait operation currently in progress. | |
390 | Note that this is not intended as a regular way to interrupt a Wait call, | |
391 | but only as an escape mechanism for exceptional situations where it is | |
392 | absolutely necessary to use it, for example to abort an operation due to | |
393 | some exception or abnormal problem. InterruptWait is automatically called | |
394 | when you \helpref{Close}{wxsocketbaseclose} a socket (and thus also upon | |
395 | socket destruction), so you don't need to use it in these cases. | |
396 | ||
fa482912 JS |
397 | \helpref{wxSocketBase::Wait}{wxsocketbasewait}, |
398 | \helpref{wxSocketServer::WaitForAccept}{wxsocketserverwaitforaccept}, | |
399 | \helpref{wxSocketBase::WaitForLost}{wxsocketbasewaitforlost}, | |
400 | \helpref{wxSocketBase::WaitForRead}{wxsocketbasewaitforread}, | |
401 | \helpref{wxSocketBase::WaitForWrite}{wxsocketbasewaitforwrite}, | |
5adbbc29 GRG |
402 | \helpref{wxSocketClient::WaitOnConnect}{wxsocketclientwaitonconnect} |
403 | ||
7cd315c6 GRG |
404 | % |
405 | % IsConnected | |
406 | % | |
407 | \membersection{wxSocketBase::IsConnected}\label{wxsocketbaseisconnected} | |
408 | ||
409 | \constfunc{bool}{IsConnected}{\void} | |
410 | ||
cc81d32f | 411 | Returns true if the socket is connected. |
7cd315c6 GRG |
412 | |
413 | % | |
414 | % IsData | |
415 | % | |
416 | \membersection{wxSocketBase::IsData}\label{wxsocketbaseisdata} | |
417 | ||
418 | \constfunc{bool}{IsData}{\void} | |
419 | ||
261b9a3d | 420 | This function waits until the socket is readable. This might mean that |
7cd315c6 | 421 | queued data is available for reading or, for streamed sockets, that |
261b9a3d GRG |
422 | the connection has been closed, so that a read operation will complete |
423 | immediately without blocking (unless the {\bf wxSOCKET\_WAITALL} flag | |
424 | is set, in which case the operation might still block). | |
7cd315c6 GRG |
425 | |
426 | \membersection{wxSocketBase::IsDisconnected}\label{wxsocketbaseisdisconnected} | |
427 | ||
428 | % | |
429 | % IsDisconnected | |
430 | % | |
431 | \constfunc{bool}{IsDisconnected}{\void} | |
432 | ||
cc81d32f | 433 | Returns true if the socket is not connected. |
7cd315c6 GRG |
434 | |
435 | \membersection{wxSocketBase::LastCount}\label{wxsocketbaselastcount} | |
436 | ||
437 | % | |
438 | % LastCount | |
439 | % | |
440 | \constfunc{wxUint32}{LastCount}{\void} | |
441 | ||
442 | Returns the number of bytes read or written by the last IO call. | |
443 | ||
444 | Use this function to get the number of bytes actually transferred | |
445 | after using one of the following IO calls: Discard, Peek, Read, | |
446 | ReadMsg, Unread, Write, WriteMsg. | |
447 | ||
448 | % | |
449 | % LastError | |
450 | % | |
451 | \membersection{wxSocketBase::LastError}\label{wxsocketbaselasterror} | |
452 | ||
453 | \constfunc{wxSocketError}{LastError}{\void} | |
454 | ||
455 | Returns the last wxSocket error. See \helpref{wxSocket errors}{wxsocketbase}. | |
456 | ||
457 | Please note that this function merely returns the last error code, | |
f6bcfd97 | 458 | but it should not be used to determine if an error has occurred (this |
7cd315c6 GRG |
459 | is because successful operations do not change the LastError value). |
460 | Use \helpref{Error}{wxsocketbaseerror} first, in order to determine | |
cc81d32f | 461 | if the last IO call failed. If this returns true, use LastError |
7cd315c6 GRG |
462 | to discover the cause of the error. |
463 | ||
464 | % | |
465 | % Notify | |
466 | % | |
467 | \membersection{wxSocketBase::Notify}\label{wxsocketbasenotify} | |
468 | ||
469 | \func{void}{Notify}{\param{bool}{ notify}} | |
470 | ||
471 | According to the {\it notify} value, this function enables | |
cc81d32f | 472 | or disables socket events. If {\it notify} is true, the events |
7cd315c6 | 473 | configured with \helpref{SetNotify}{wxsocketbasesetnotify} will |
cc81d32f | 474 | be sent to the application. If {\it notify} is false; no events |
7cd315c6 GRG |
475 | will be sent. |
476 | ||
477 | % | |
478 | % Ok | |
479 | % | |
480 | \membersection{wxSocketBase::Ok}\label{wxsocketbaseok} | |
481 | ||
482 | \constfunc{bool}{Ok}{\void} | |
483 | ||
cc81d32f | 484 | Returns true if the socket is initialized and ready and false in other |
7cd315c6 GRG |
485 | cases. |
486 | ||
5cb91489 GRG |
487 | \wxheading{Remark/Warning} |
488 | ||
cc81d32f | 489 | For \helpref{wxSocketClient}{wxsocketclient}, Ok won't return true unless |
5cb91489 GRG |
490 | the client is connected to a server. |
491 | ||
cc81d32f | 492 | For \helpref{wxSocketServer}{wxsocketserver}, Ok will return true if the |
5cb91489 GRG |
493 | server could bind to the specified address and is already listening for |
494 | new connections. | |
495 | ||
f6bcfd97 BP |
496 | Ok does not check for IO errors; |
497 | use \helpref{Error}{wxsocketbaseerror} instead for that purpose. | |
5cb91489 | 498 | |
7cd315c6 GRG |
499 | % |
500 | % RestoreState | |
501 | % | |
502 | \membersection{wxSocketBase::RestoreState}\label{wxsocketbaserestorestate} | |
503 | ||
504 | \func{void}{RestoreState}{\void} | |
505 | ||
506 | This function restores the previous state of the socket, as saved | |
507 | with \helpref{SaveState}{wxsocketbasesavestate} | |
508 | ||
509 | Calls to SaveState and RestoreState can be nested. | |
510 | ||
511 | \wxheading{See also} | |
512 | ||
513 | \helpref{wxSocketBase::SaveState}{wxsocketbasesavestate} | |
514 | ||
515 | % | |
516 | % SaveState | |
517 | % | |
518 | \membersection{wxSocketBase::SaveState}\label{wxsocketbasesavestate} | |
519 | ||
520 | \func{void}{SaveState}{\void} | |
521 | ||
522 | This function saves the current state of the socket in a stack. Socket | |
523 | state includes flags, as set with \helpref{SetFlags}{wxsocketbasesetflags}, | |
fa482912 JS |
524 | event mask, as set with \helpref{SetNotify}{wxsocketbasesetnotify} and |
525 | \helpref{Notify}{wxsocketbasenotify}, user data, as set with | |
5adbbc29 | 526 | \helpref{SetClientData}{wxsocketbasesetclientdata}, and asynchronous |
fa482912 | 527 | callback settings, as set with \helpref{Callback}{wxsocketbasecallback} |
7cd315c6 GRG |
528 | and \helpref{CallbackData}{wxsocketbasecallbackdata}. |
529 | ||
530 | Calls to SaveState and RestoreState can be nested. | |
531 | ||
532 | \wxheading{See also} | |
533 | ||
534 | \helpref{wxSocketBase::RestoreState}{wxsocketbaserestorestate} | |
535 | ||
5adbbc29 GRG |
536 | % |
537 | % SetClientData | |
538 | % | |
539 | \membersection{wxSocketBase::SetClientData}\label{wxsocketbasesetclientdata} | |
540 | ||
541 | \func{void}{SetClientData}{\param{void *}{data}} | |
542 | ||
543 | Sets user-supplied client data for this socket. All socket events will | |
f6bcfd97 BP |
544 | contain a pointer to this data, which can be retrieved with |
545 | the \helpref{wxSocketEvent::GetClientData}{wxsocketeventgetclientdata} function. | |
5adbbc29 | 546 | |
7cd315c6 GRG |
547 | % |
548 | % SetEventHandler | |
549 | % | |
550 | \membersection{wxSocketBase::SetEventHandler}\label{wxsocketbaseseteventhandler} | |
551 | ||
f6bcfd97 | 552 | \func{void}{SetEventHandler}{\param{wxEvtHandler\&}{ handler}, \param{int}{ id = -1}} |
7cd315c6 GRG |
553 | |
554 | Sets an event handler to be called when a socket event occurs. The | |
555 | handler will be called for those events for which notification is | |
fa482912 | 556 | enabled with \helpref{SetNotify}{wxsocketbasesetnotify} and |
7cd315c6 GRG |
557 | \helpref{Notify}{wxsocketbasenotify}. |
558 | ||
7cd315c6 GRG |
559 | \wxheading{Parameters} |
560 | ||
f6bcfd97 | 561 | \docparam{handler}{Specifies the event handler you want to use.} |
7cd315c6 GRG |
562 | |
563 | \docparam{id}{The id of socket event.} | |
564 | ||
565 | \wxheading{See also} | |
566 | ||
567 | \helpref{wxSocketBase::SetNotify}{wxsocketbasesetnotify}, | |
568 | \helpref{wxSocketBase::Notify}{wxsocketbasenotify}, | |
569 | \helpref{wxSocketEvent}{wxsocketevent}, | |
fa482912 | 570 | \helpref{wxEvtHandler}{wxevthandler} |
7cd315c6 GRG |
571 | |
572 | % | |
573 | % SetFlags | |
574 | % | |
5a96d2f4 GL |
575 | \membersection{wxSocketBase::SetFlags}\label{wxsocketbasesetflags} |
576 | ||
f6bcfd97 | 577 | \func{void}{SetFlags}{\param{wxSocketFlags}{ flags}} |
5a96d2f4 | 578 | |
f6bcfd97 | 579 | Use SetFlags to customize IO operation for this socket. |
2edb0bde | 580 | The {\it flags} parameter may be a combination of flags ORed together. |
f6bcfd97 | 581 | The following flags can be used: |
5adbbc29 | 582 | |
5a96d2f4 GL |
583 | \twocolwidtha{7cm} |
584 | \begin{twocollist}\itemsep=0pt | |
a4625b8c GRG |
585 | \twocolitem{{\bf wxSOCKET\_NONE}}{Normal functionality.} |
586 | \twocolitem{{\bf wxSOCKET\_NOWAIT}}{Read/write as much data as possible and return immediately.} | |
587 | \twocolitem{{\bf wxSOCKET\_WAITALL}}{Wait for all required data to be read/written unless an error occurs.} | |
105521d1 | 588 | \twocolitem{{\bf wxSOCKET\_BLOCK}}{Block the GUI (do not yield) while reading/writing data.} |
5a96d2f4 GL |
589 | \end{twocollist} |
590 | ||
cf85cb95 GRG |
591 | A brief overview on how to use these flags follows. |
592 | ||
593 | If no flag is specified (this is the same as {\bf wxSOCKET\_NONE}), | |
594 | IO calls will return after some data has been read or written, even | |
595 | when the transfer might not be complete. This is the same as issuing | |
f6bcfd97 BP |
596 | exactly one blocking low-level call to recv() or send(). Note |
597 | that {\it blocking} here refers to when the function returns, not | |
598 | to whether the GUI blocks during this time. | |
cf85cb95 GRG |
599 | |
600 | If {\bf wxSOCKET\_NOWAIT} is specified, IO calls will return immediately. | |
601 | Read operations will retrieve only available data. Write operations will | |
602 | write as much data as possible, depending on how much space is available | |
603 | in the output buffer. This is the same as issuing exactly one nonblocking | |
105521d1 GRG |
604 | low-level call to recv() or send(). Note that {\it nonblocking} here |
605 | refers to when the function returns, not to whether the GUI blocks during | |
606 | this time. | |
cf85cb95 GRG |
607 | |
608 | If {\bf wxSOCKET\_WAITALL} is specified, IO calls won't return until ALL | |
609 | the data has been read or written (or until an error occurs), blocking if | |
610 | necessary, and issuing several low level calls if necessary. This is the | |
611 | same as having a loop which makes as many blocking low-level calls to | |
f6bcfd97 BP |
612 | recv() or send() as needed so as to transfer all the data. Note |
613 | that {\it blocking} here refers to when the function returns, not | |
614 | to whether the GUI blocks during this time. | |
cf85cb95 | 615 | |
bf9b6711 | 616 | The {\bf wxSOCKET\_BLOCK} flag controls whether the GUI blocks during |
105521d1 GRG |
617 | IO operations. If this flag is specified, the socket will not yield |
618 | during IO calls, so the GUI will remain blocked until the operation | |
619 | completes. If it is not used, then the application must take extra | |
620 | care to avoid unwanted reentrance. | |
cf85cb95 GRG |
621 | |
622 | So: | |
623 | ||
a4625b8c | 624 | {\bf wxSOCKET\_NONE} will try to read at least SOME data, no matter how much. |
407f3681 | 625 | |
cf85cb95 GRG |
626 | {\bf wxSOCKET\_NOWAIT} will always return immediately, even if it cannot |
627 | read or write ANY data. | |
407f3681 | 628 | |
cf85cb95 GRG |
629 | {\bf wxSOCKET\_WAITALL} will only return when it has read or written ALL |
630 | the data. | |
407f3681 | 631 | |
cf85cb95 | 632 | {\bf wxSOCKET\_BLOCK} has nothing to do with the previous flags and |
bf9b6711 | 633 | it controls whether the GUI blocks. |
cf85cb95 | 634 | |
5a96d2f4 GL |
635 | % |
636 | % SetNotify | |
637 | % | |
638 | \membersection{wxSocketBase::SetNotify}\label{wxsocketbasesetnotify} | |
639 | ||
cf85cb95 | 640 | \func{void}{SetNotify}{\param{wxSocketEventFlags}{ flags}} |
5a96d2f4 | 641 | |
cf85cb95 | 642 | SetNotify specifies which socket events are to be sent to the event handler. |
2edb0bde | 643 | The {\it flags} parameter may be combination of flags ORed together. The |
cf85cb95 | 644 | following flags can be used: |
aa6d9706 GL |
645 | |
646 | \twocolwidtha{7cm} | |
647 | \begin{twocollist}\itemsep=0pt | |
cf85cb95 GRG |
648 | \twocolitem{{\bf wxSOCKET\_INPUT\_FLAG}}{to receive wxSOCKET\_INPUT} |
649 | \twocolitem{{\bf wxSOCKET\_OUTPUT\_FLAG}}{to receive wxSOCKET\_OUTPUT} | |
650 | \twocolitem{{\bf wxSOCKET\_CONNECTION\_FLAG}}{to receive wxSOCKET\_CONNECTION} | |
651 | \twocolitem{{\bf wxSOCKET\_LOST\_FLAG}}{to receive wxSOCKET\_LOST} | |
a4625b8c | 652 | \end{twocollist} |
aa6d9706 GL |
653 | |
654 | For example: | |
407f3681 | 655 | |
aa6d9706 | 656 | \begin{verbatim} |
cf85cb95 | 657 | sock.SetNotify(wxSOCKET_INPUT_FLAG | wxSOCKET_LOST_FLAG); |
cc81d32f | 658 | sock.Notify(true); |
aa6d9706 | 659 | \end{verbatim} |
407f3681 | 660 | |
cf85cb95 GRG |
661 | In this example, the user will be notified about incoming socket data and |
662 | whenever the connection is closed. | |
aa6d9706 | 663 | |
7e9a386e | 664 | For more information on socket events see \helpref{wxSocket events}{wxsocketbase}. |
aa6d9706 GL |
665 | |
666 | % | |
667 | % SetTimeout | |
668 | % | |
bf9b6711 | 669 | \membersection{wxSocketBase::SetTimeout}\label{wxsocketbasesettimeout} |
7e9a386e | 670 | |
aa6d9706 GL |
671 | \func{void}{SetTimeout}{\param{int }{seconds}} |
672 | ||
7cd315c6 | 673 | This function sets the default socket timeout in seconds. This timeout |
f6bcfd97 BP |
674 | applies to all IO calls, and also to the \helpref{Wait}{wxsocketbasewait} family |
675 | of functions if you don't specify a wait interval. Initially, the default | |
676 | timeout is 10 minutes. | |
e79848ac | 677 | |
e79848ac GL |
678 | % |
679 | % Peek | |
680 | % | |
e79848ac GL |
681 | \membersection{wxSocketBase::Peek}\label{wxsocketbasepeek} |
682 | ||
061379e2 | 683 | \func{wxSocketBase\&}{Peek}{\param{void *}{ buffer}, \param{wxUint32}{ nbytes}} |
e79848ac | 684 | |
a4625b8c GRG |
685 | This function peeks a buffer of {\it nbytes} bytes from the socket. |
686 | Peeking a buffer doesn't delete it from the socket input queue. | |
e79848ac | 687 | |
105521d1 | 688 | Use \helpref{LastCount}{wxsocketbaselastcount} to verify the number of bytes actually peeked. |
cf85cb95 | 689 | |
105521d1 | 690 | Use \helpref{Error}{wxsocketbaseerror} to determine if the operation succeeded. |
cf85cb95 | 691 | |
e79848ac GL |
692 | \wxheading{Parameters} |
693 | ||
694 | \docparam{buffer}{Buffer where to put peeked data.} | |
42ff6409 | 695 | |
e79848ac GL |
696 | \docparam{nbytes}{Number of bytes.} |
697 | ||
42ff6409 JS |
698 | \wxheading{Return value} |
699 | ||
e79848ac GL |
700 | Returns a reference to the current object. |
701 | ||
cf85cb95 GRG |
702 | \wxheading{Remark/Warning} |
703 | ||
7cd315c6 | 704 | The exact behaviour of wxSocketBase::Peek depends on the combination |
cf85cb95 GRG |
705 | of flags being used. For a detailed explanation, see \helpref{wxSocketBase::SetFlags}{wxsocketbasesetflags} |
706 | ||
e79848ac GL |
707 | \wxheading{See also} |
708 | ||
407f3681 JS |
709 | \helpref{wxSocketBase::Error}{wxsocketbaseerror}, |
710 | \helpref{wxSocketBase::LastError}{wxsocketbaselasterror}, | |
711 | \helpref{wxSocketBase::LastCount}{wxsocketbaselastcount}, | |
cf85cb95 | 712 | \helpref{wxSocketBase::SetFlags}{wxsocketbasesetflags} |
e79848ac GL |
713 | |
714 | % | |
715 | % Read | |
716 | % | |
e79848ac GL |
717 | \membersection{wxSocketBase::Read}\label{wxsocketbaseread} |
718 | ||
061379e2 | 719 | \func{wxSocketBase\&}{Read}{\param{void *}{ buffer}, \param{wxUint32}{ nbytes}} |
e79848ac GL |
720 | |
721 | This function reads a buffer of {\it nbytes} bytes from the socket. | |
722 | ||
105521d1 | 723 | Use \helpref{LastCount}{wxsocketbaselastcount} to verify the number of bytes actually read. |
cf85cb95 | 724 | |
105521d1 | 725 | Use \helpref{Error}{wxsocketbaseerror} to determine if the operation succeeded. |
cf85cb95 | 726 | |
e79848ac GL |
727 | \wxheading{Parameters} |
728 | ||
729 | \docparam{buffer}{Buffer where to put read data.} | |
42ff6409 | 730 | |
e79848ac GL |
731 | \docparam{nbytes}{Number of bytes.} |
732 | ||
42ff6409 JS |
733 | \wxheading{Return value} |
734 | ||
e79848ac GL |
735 | Returns a reference to the current object. |
736 | ||
9f3430a6 GL |
737 | \wxheading{Remark/Warning} |
738 | ||
7cd315c6 | 739 | The exact behaviour of wxSocketBase::Read depends on the combination |
407f3681 | 740 | of flags being used. For a detailed explanation, see \helpref{wxSocketBase::SetFlags}{wxsocketbasesetflags}. |
cf85cb95 | 741 | |
e79848ac GL |
742 | \wxheading{See also} |
743 | ||
407f3681 JS |
744 | \helpref{wxSocketBase::Error}{wxsocketbaseerror}, |
745 | \helpref{wxSocketBase::LastError}{wxsocketbaselasterror}, | |
746 | \helpref{wxSocketBase::LastCount}{wxsocketbaselastcount}, | |
cf85cb95 | 747 | \helpref{wxSocketBase::SetFlags}{wxsocketbasesetflags} |
e79848ac | 748 | |
e79848ac GL |
749 | % |
750 | % ReadMsg | |
751 | % | |
e79848ac GL |
752 | \membersection{wxSocketBase::ReadMsg}\label{wxsocketbasereadmsg} |
753 | ||
061379e2 | 754 | \func{wxSocketBase\&}{ReadMsg}{\param{void *}{ buffer}, \param{wxUint32}{ nbytes}} |
e79848ac | 755 | |
fa482912 | 756 | This function reads a buffer sent by \helpref{WriteMsg}{wxsocketbasewritemsg} |
105521d1 GRG |
757 | on a socket. If the buffer passed to the function isn't big enough, the |
758 | remaining bytes will be discarded. This function always waits for the | |
759 | buffer to be entirely filled, unless an error occurs. | |
cf85cb95 | 760 | |
105521d1 | 761 | Use \helpref{LastCount}{wxsocketbaselastcount} to verify the number of bytes actually read. |
cf85cb95 | 762 | |
105521d1 | 763 | Use \helpref{Error}{wxsocketbaseerror} to determine if the operation succeeded. |
e79848ac GL |
764 | |
765 | \wxheading{Parameters} | |
766 | ||
767 | \docparam{buffer}{Buffer where to put read data.} | |
42ff6409 | 768 | |
105521d1 | 769 | \docparam{nbytes}{Size of the buffer.} |
e79848ac | 770 | |
42ff6409 JS |
771 | \wxheading{Return value} |
772 | ||
e79848ac GL |
773 | Returns a reference to the current object. |
774 | ||
cf85cb95 GRG |
775 | \wxheading{Remark/Warning} |
776 | ||
7cd315c6 | 777 | wxSocketBase::ReadMsg will behave as if the {\bf wxSOCKET\_WAITALL} flag |
a4625b8c GRG |
778 | was always set and it will always ignore the {\bf wxSOCKET\_NOWAIT} flag. |
779 | The exact behaviour of ReadMsg depends on the {\bf wxSOCKET\_BLOCK} flag. | |
780 | For a detailed explanation, see \helpref{wxSocketBase::SetFlags}{wxsocketbasesetflags}. | |
cf85cb95 | 781 | |
e79848ac GL |
782 | \wxheading{See also} |
783 | ||
407f3681 JS |
784 | \helpref{wxSocketBase::Error}{wxsocketbaseerror}, |
785 | \helpref{wxSocketBase::LastError}{wxsocketbaselasterror}, | |
786 | \helpref{wxSocketBase::LastCount}{wxsocketbaselastcount}, | |
787 | \helpref{wxSocketBase::SetFlags}{wxsocketbasesetflags}, | |
9f3430a6 | 788 | \helpref{wxSocketBase::WriteMsg}{wxsocketbasewritemsg} |
e79848ac GL |
789 | |
790 | % | |
791 | % Unread | |
792 | % | |
09eea162 | 793 | \membersection{wxSocketBase::Unread}\label{wxsocketbaseunread} |
e79848ac | 794 | |
061379e2 | 795 | \func{wxSocketBase\&}{Unread}{\param{const void *}{ buffer}, \param{wxUint32}{ nbytes}} |
e79848ac | 796 | |
cf85cb95 GRG |
797 | This function unreads a buffer. That is, the data in the buffer is put back |
798 | in the incoming queue. This function is not affected by wxSocket flags. | |
799 | ||
105521d1 | 800 | If you use \helpref{LastCount}{wxsocketbaselastcount}, it will always return {\it nbytes}. |
cf85cb95 | 801 | |
cc81d32f | 802 | If you use \helpref{Error}{wxsocketbaseerror}, it will always return false. |
e79848ac GL |
803 | |
804 | \wxheading{Parameters} | |
805 | ||
806 | \docparam{buffer}{Buffer to be unread.} | |
42ff6409 | 807 | |
e79848ac GL |
808 | \docparam{nbytes}{Number of bytes.} |
809 | ||
42ff6409 JS |
810 | \wxheading{Return value} |
811 | ||
e79848ac GL |
812 | Returns a reference to the current object. |
813 | ||
814 | \wxheading{See also} | |
815 | ||
407f3681 JS |
816 | \helpref{wxSocketBase::Error}{wxsocketbaseerror}, |
817 | \helpref{wxSocketBase::LastCount}{wxsocketbaselastcount}, | |
9f3430a6 | 818 | \helpref{wxSocketBase::LastError}{wxsocketbaselasterror} |
e79848ac GL |
819 | |
820 | % | |
7cd315c6 | 821 | % Wait |
e79848ac | 822 | % |
e79848ac | 823 | \membersection{wxSocketBase::Wait}\label{wxsocketbasewait} |
42ff6409 | 824 | |
aa6d9706 | 825 | \func{bool}{Wait}{\param{long}{ seconds = -1}, \param{long}{ millisecond = 0}} |
e79848ac | 826 | |
cc81d32f | 827 | This function waits until any of the following conditions is true: |
105521d1 GRG |
828 | |
829 | \begin{itemize} | |
7cd315c6 | 830 | \item The socket becomes readable. |
105521d1 | 831 | \item The socket becomes writable. |
f6bcfd97 BP |
832 | \item An ongoing connection request has completed (\helpref{wxSocketClient}{wxsocketclient} only) |
833 | \item An incoming connection request has arrived (\helpref{wxSocketServer}{wxsocketserver} only) | |
105521d1 GRG |
834 | \item The connection has been closed. |
835 | \end{itemize} | |
e79848ac | 836 | |
f6bcfd97 BP |
837 | Note that it is recommended to use the individual Wait functions |
838 | to wait for the required condition, instead of this one. | |
839 | ||
e79848ac GL |
840 | \wxheading{Parameters} |
841 | ||
105521d1 GRG |
842 | \docparam{seconds}{Number of seconds to wait. |
843 | If -1, it will wait for the default timeout, | |
844 | as set with \helpref{SetTimeout}{wxsocketbasesettimeout}.} | |
42ff6409 | 845 | |
aa6d9706 | 846 | \docparam{millisecond}{Number of milliseconds to wait.} |
e79848ac | 847 | |
42ff6409 | 848 | \wxheading{Return value} |
e79848ac | 849 | |
cc81d32f VS |
850 | Returns true when any of the above conditions is satisfied, |
851 | false if the timeout was reached. | |
e79848ac GL |
852 | |
853 | \wxheading{See also} | |
854 | ||
fa482912 JS |
855 | \helpref{wxSocketBase::InterruptWait}{wxsocketbaseinterruptwait}, |
856 | \helpref{wxSocketServer::WaitForAccept}{wxsocketserverwaitforaccept}, | |
857 | \helpref{wxSocketBase::WaitForLost}{wxsocketbasewaitforlost}, | |
407f3681 | 858 | \helpref{wxSocketBase::WaitForRead}{wxsocketbasewaitforread}, |
fa482912 | 859 | \helpref{wxSocketBase::WaitForWrite}{wxsocketbasewaitforwrite}, |
5adbbc29 | 860 | \helpref{wxSocketClient::WaitOnConnect}{wxsocketclientwaitonconnect} |
e79848ac GL |
861 | |
862 | % | |
5adbbc29 | 863 | % WaitForLost |
e79848ac | 864 | % |
5adbbc29 | 865 | \membersection{wxSocketBase::WaitForLost}\label{wxsocketbasewaitforlost} |
42ff6409 | 866 | |
5adbbc29 | 867 | \func{bool}{Wait}{\param{long}{ seconds = -1}, \param{long}{ millisecond = 0}} |
e79848ac | 868 | |
5adbbc29 GRG |
869 | This function waits until the connection is lost. This may happen if |
870 | the peer gracefully closes the connection or if the connection breaks. | |
e79848ac GL |
871 | |
872 | \wxheading{Parameters} | |
873 | ||
105521d1 GRG |
874 | \docparam{seconds}{Number of seconds to wait. |
875 | If -1, it will wait for the default timeout, | |
876 | as set with \helpref{SetTimeout}{wxsocketbasesettimeout}.} | |
42ff6409 | 877 | |
aa6d9706 | 878 | \docparam{millisecond}{Number of milliseconds to wait.} |
e79848ac | 879 | |
42ff6409 | 880 | \wxheading{Return value} |
e79848ac | 881 | |
cc81d32f | 882 | Returns true if the connection was lost, false if the timeout was reached. |
e79848ac GL |
883 | |
884 | \wxheading{See also} | |
885 | ||
5adbbc29 GRG |
886 | \helpref{wxSocketBase::InterruptWait}{wxsocketbaseinterruptwait}, |
887 | \helpref{wxSocketBase::Wait}{wxsocketbasewait} | |
e79848ac GL |
888 | |
889 | % | |
5adbbc29 | 890 | % WaitForRead |
e79848ac | 891 | % |
5adbbc29 | 892 | \membersection{wxSocketBase::WaitForRead}\label{wxsocketbasewaitforread} |
42ff6409 | 893 | |
5adbbc29 | 894 | \func{bool}{WaitForRead}{\param{long}{ seconds = -1}, \param{long}{ millisecond = 0}} |
e79848ac | 895 | |
5adbbc29 GRG |
896 | This function waits until the socket is readable. This might mean that |
897 | queued data is available for reading or, for streamed sockets, that | |
898 | the connection has been closed, so that a read operation will complete | |
899 | immediately without blocking (unless the {\bf wxSOCKET\_WAITALL} flag | |
900 | is set, in which case the operation might still block). | |
e79848ac GL |
901 | |
902 | \wxheading{Parameters} | |
903 | ||
105521d1 GRG |
904 | \docparam{seconds}{Number of seconds to wait. |
905 | If -1, it will wait for the default timeout, | |
906 | as set with \helpref{SetTimeout}{wxsocketbasesettimeout}.} | |
42ff6409 | 907 | |
aa6d9706 | 908 | \docparam{millisecond}{Number of milliseconds to wait.} |
e79848ac | 909 | |
42ff6409 | 910 | \wxheading{Return value} |
e79848ac | 911 | |
cc81d32f | 912 | Returns true if the socket becomes readable, false on timeout. |
e79848ac GL |
913 | |
914 | \wxheading{See also} | |
915 | ||
fa482912 | 916 | \helpref{wxSocketBase::InterruptWait}{wxsocketbaseinterruptwait}, |
5adbbc29 | 917 | \helpref{wxSocketBase::Wait}{wxsocketbasewait} |
e79848ac GL |
918 | |
919 | % | |
5adbbc29 | 920 | % WaitForWrite |
e79848ac | 921 | % |
5adbbc29 | 922 | \membersection{wxSocketBase::WaitForWrite}\label{wxsocketbasewaitforwrite} |
42ff6409 | 923 | |
5adbbc29 | 924 | \func{bool}{WaitForWrite}{\param{long}{ seconds = -1}, \param{long}{ millisecond = 0}} |
e79848ac | 925 | |
5adbbc29 GRG |
926 | This function waits until the socket becomes writable. This might mean that |
927 | the socket is ready to send new data, or for streamed sockets, that the | |
928 | connection has been closed, so that a write operation is guaranteed to | |
929 | complete immediately (unless the {\bf wxSOCKET\_WAITALL} flag is set, | |
930 | in which case the operation might still block). | |
e79848ac GL |
931 | |
932 | \wxheading{Parameters} | |
933 | ||
105521d1 GRG |
934 | \docparam{seconds}{Number of seconds to wait. |
935 | If -1, it will wait for the default timeout, | |
936 | as set with \helpref{SetTimeout}{wxsocketbasesettimeout}.} | |
42ff6409 | 937 | |
aa6d9706 | 938 | \docparam{millisecond}{Number of milliseconds to wait.} |
e79848ac | 939 | |
42ff6409 | 940 | \wxheading{Return value} |
e79848ac | 941 | |
cc81d32f | 942 | Returns true if the socket becomes writable, false on timeout. |
e79848ac GL |
943 | |
944 | \wxheading{See also} | |
945 | ||
fa482912 | 946 | \helpref{wxSocketBase::InterruptWait}{wxsocketbaseinterruptwait}, |
5adbbc29 | 947 | \helpref{wxSocketBase::Wait}{wxsocketbasewait} |
42ff6409 JS |
948 | |
949 | % | |
7cd315c6 | 950 | % Write |
42ff6409 | 951 | % |
7cd315c6 | 952 | \membersection{wxSocketBase::Write}\label{wxsocketbasewrite} |
42ff6409 | 953 | |
061379e2 | 954 | \func{wxSocketBase\&}{Write}{\param{const void *}{ buffer}, \param{wxUint32}{ nbytes}} |
42ff6409 | 955 | |
7cd315c6 | 956 | This function writes a buffer of {\it nbytes} bytes to the socket. |
e79848ac | 957 | |
7cd315c6 | 958 | Use \helpref{LastCount}{wxsocketbaselastcount} to verify the number of bytes actually written. |
42ff6409 | 959 | |
7cd315c6 | 960 | Use \helpref{Error}{wxsocketbaseerror} to determine if the operation succeeded. |
e79848ac | 961 | |
7cd315c6 | 962 | \wxheading{Parameters} |
cf85cb95 | 963 | |
7cd315c6 | 964 | \docparam{buffer}{Buffer with the data to be sent.} |
e79848ac | 965 | |
7cd315c6 | 966 | \docparam{nbytes}{Number of bytes.} |
e79848ac | 967 | |
7cd315c6 | 968 | \wxheading{Return value} |
aa6d9706 | 969 | |
7cd315c6 | 970 | Returns a reference to the current object. |
7e9a386e | 971 | |
7cd315c6 | 972 | \wxheading{Remark/Warning} |
aa6d9706 | 973 | |
7cd315c6 GRG |
974 | The exact behaviour of wxSocketBase::Write depends on the combination |
975 | of flags being used. For a detailed explanation, see \helpref{wxSocketBase::SetFlags}{wxsocketbasesetflags}. | |
aa6d9706 | 976 | |
7cd315c6 | 977 | \wxheading{See also} |
aa6d9706 | 978 | |
7cd315c6 GRG |
979 | \helpref{wxSocketBase::Error}{wxsocketbaseerror}, |
980 | \helpref{wxSocketBase::LastError}{wxsocketbaselasterror}, | |
981 | \helpref{wxSocketBase::LastCount}{wxsocketbaselastcount}, | |
982 | \helpref{wxSocketBase::SetFlags}{wxsocketbasesetflags} | |
aa6d9706 GL |
983 | |
984 | % | |
7cd315c6 | 985 | % WriteMsg |
aa6d9706 | 986 | % |
7cd315c6 | 987 | \membersection{wxSocketBase::WriteMsg}\label{wxsocketbasewritemsg} |
e79848ac | 988 | |
061379e2 | 989 | \func{wxSocketBase\&}{WriteMsg}{\param{const void *}{ buffer}, \param{wxUint32}{ nbytes}} |
e79848ac | 990 | |
7cd315c6 | 991 | This function writes a buffer of {\it nbytes} bytes from the socket, but it |
fa482912 JS |
992 | writes a short header before so that \helpref{ReadMsg}{wxsocketbasereadmsg} |
993 | knows how much data should it actually read. So, a buffer sent with WriteMsg | |
7cd315c6 GRG |
994 | {\bf must} be read with ReadMsg. This function always waits for the entire |
995 | buffer to be sent, unless an error occurs. | |
e79848ac | 996 | |
7cd315c6 | 997 | Use \helpref{LastCount}{wxsocketbaselastcount} to verify the number of bytes actually written. |
cf85cb95 | 998 | |
7cd315c6 | 999 | Use \helpref{Error}{wxsocketbaseerror} to determine if the operation succeeded. |
e79848ac GL |
1000 | |
1001 | \wxheading{Parameters} | |
1002 | ||
7cd315c6 | 1003 | \docparam{buffer}{Buffer with the data to be sent.} |
105521d1 | 1004 | |
7cd315c6 | 1005 | \docparam{nbytes}{Number of bytes to send.} |
aa6d9706 GL |
1006 | |
1007 | \wxheading{Return value} | |
1008 | ||
7cd315c6 | 1009 | Returns a reference to the current object. |
aa6d9706 | 1010 | |
7cd315c6 | 1011 | \wxheading{Remark/Warning} |
aa6d9706 | 1012 | |
7cd315c6 GRG |
1013 | wxSocketBase::WriteMsg will behave as if the {\bf wxSOCKET\_WAITALL} flag |
1014 | was always set and it will always ignore the {\bf wxSOCKET\_NOWAIT} flag. | |
1015 | The exact behaviour of WriteMsg depends on the {\bf wxSOCKET\_BLOCK} flag. | |
1016 | For a detailed explanation, see \helpref{wxSocketBase::SetFlags}{wxsocketbasesetflags}. | |
105521d1 | 1017 | |
7cd315c6 | 1018 | \wxheading{See also} |
aa6d9706 | 1019 | |
7cd315c6 GRG |
1020 | \helpref{wxSocketBase::Error}{wxsocketbaseerror}, |
1021 | \helpref{wxSocketBase::LastError}{wxsocketbaselasterror}, | |
1022 | \helpref{wxSocketBase::LastCount}{wxsocketbaselastcount}, | |
1023 | \helpref{wxSocketBase::SetFlags}{wxsocketbasesetflags}, | |
1024 | \helpref{wxSocketBase::ReadMsg}{wxsocketbasereadmsg} | |
cf85cb95 | 1025 | |
e79848ac GL |
1026 | |
1027 | % --------------------------------------------------------------------------- | |
1028 | % CLASS wxSocketClient | |
1029 | % --------------------------------------------------------------------------- | |
7cd315c6 | 1030 | |
e79848ac GL |
1031 | \section{\class{wxSocketClient}}\label{wxsocketclient} |
1032 | ||
1033 | \wxheading{Derived from} | |
1034 | ||
1035 | \helpref{wxSocketBase}{wxsocketbase} | |
1036 | ||
954b8ae6 JS |
1037 | \wxheading{Include files} |
1038 | ||
1039 | <wx/socket.h> | |
1040 | ||
fa482912 JS |
1041 | \latexignore{\rtfignore{\wxheading{Members}}} |
1042 | ||
e79848ac GL |
1043 | % --------------------------------------------------------------------------- |
1044 | % Members | |
1045 | % --------------------------------------------------------------------------- | |
e79848ac GL |
1046 | % |
1047 | % wxSocketClient | |
1048 | % | |
e79848ac | 1049 | \membersection{wxSocketClient::wxSocketClient} |
42ff6409 | 1050 | |
e7240349 | 1051 | \func{}{wxSocketClient}{\param{wxSocketFlags}{ flags = wxSOCKET\_NONE}} |
e79848ac | 1052 | |
105521d1 | 1053 | Constructor. |
42ff6409 | 1054 | |
e79848ac GL |
1055 | \wxheading{Parameters} |
1056 | ||
1057 | \docparam{flags}{Socket flags (See \helpref{wxSocketBase::SetFlags}{wxsocketbasesetflags})} | |
1058 | ||
1059 | % | |
1060 | % ~wxSocketClient | |
1061 | % | |
e79848ac | 1062 | \membersection{wxSocketClient::\destruct{wxSocketClient}} |
42ff6409 | 1063 | |
e79848ac GL |
1064 | \func{}{\destruct{wxSocketClient}}{\void} |
1065 | ||
f6bcfd97 | 1066 | Destructor. Please see \helpref{wxSocketBase::Destroy}{wxsocketbasedestroy}. |
e79848ac GL |
1067 | |
1068 | % | |
1069 | % Connect | |
1070 | % | |
42ff6409 | 1071 | \membersection{wxSocketClient::Connect}\label{wxsocketclientconnect} |
e79848ac | 1072 | |
cc81d32f | 1073 | \func{bool}{Connect}{\param{wxSockAddress\&}{ address}, \param{bool}{ wait = true}} |
e79848ac | 1074 | |
cf85cb95 GRG |
1075 | Connects to a server using the specified address. |
1076 | ||
cc81d32f | 1077 | If {\it wait} is true, Connect will wait until the connection |
f6bcfd97 | 1078 | completes. {\bf Warning:} This will block the GUI. |
cf85cb95 | 1079 | |
cc81d32f | 1080 | If {\it wait} is false, Connect will try to establish the connection and |
cf85cb95 | 1081 | return immediately, without blocking the GUI. When used this way, even if |
cc81d32f | 1082 | Connect returns false, the connection request can be completed later. |
105521d1 GRG |
1083 | To detect this, use \helpref{WaitOnConnect}{wxsocketclientwaitonconnect}, |
1084 | or catch {\bf wxSOCKET\_CONNECTION} events (for successful establishment) | |
1085 | and {\bf wxSOCKET\_LOST} events (for connection failure). | |
e79848ac GL |
1086 | |
1087 | \wxheading{Parameters} | |
1088 | ||
1089 | \docparam{address}{Address of the server.} | |
42ff6409 | 1090 | |
cc81d32f | 1091 | \docparam{wait}{If true, waits for the connection to complete.} |
e79848ac GL |
1092 | |
1093 | \wxheading{Return value} | |
1094 | ||
cc81d32f | 1095 | Returns true if the connection is established and no error occurs. |
e79848ac | 1096 | |
cc81d32f | 1097 | If {\it wait} was true, and Connect returns false, an error occurred |
cf85cb95 GRG |
1098 | and the connection failed. |
1099 | ||
cc81d32f | 1100 | If {\it wait} was false, and Connect returns false, you should still |
cf85cb95 | 1101 | be prepared to handle the completion of this connection request, either |
f6bcfd97 BP |
1102 | with \helpref{WaitOnConnect}{wxsocketclientwaitonconnect} or by |
1103 | watching {\bf wxSOCKET\_CONNECTION} and {\bf wxSOCKET\_LOST} events. | |
cf85cb95 | 1104 | |
e79848ac GL |
1105 | \wxheading{See also} |
1106 | ||
407f3681 JS |
1107 | \helpref{wxSocketClient::WaitOnConnect}{wxsocketclientwaitonconnect}, |
1108 | \helpref{wxSocketBase::SetNotify}{wxsocketbasesetnotify}, | |
cf85cb95 | 1109 | \helpref{wxSocketBase::Notify}{wxsocketbasenotify} |
e79848ac GL |
1110 | |
1111 | % | |
1112 | % WaitOnConnect | |
1113 | % | |
42ff6409 | 1114 | \membersection{wxSocketClient::WaitOnConnect}\label{wxsocketclientwaitonconnect} |
e79848ac | 1115 | |
aa6d9706 | 1116 | \func{bool}{WaitOnConnect}{\param{long}{ seconds = -1}, \param{long}{ milliseconds = 0}} |
e79848ac | 1117 | |
105521d1 | 1118 | Wait until a connection request completes, or until the specified timeout |
f6bcfd97 | 1119 | elapses. Use this function after issuing a call |
cc81d32f | 1120 | to \helpref{Connect}{wxsocketclientconnect} with {\it wait} set to false. |
cf85cb95 GRG |
1121 | |
1122 | \wxheading{Parameters} | |
1123 | ||
105521d1 GRG |
1124 | \docparam{seconds}{Number of seconds to wait. |
1125 | If -1, it will wait for the default timeout, | |
1126 | as set with \helpref{SetTimeout}{wxsocketbasesettimeout}.} | |
cf85cb95 GRG |
1127 | |
1128 | \docparam{millisecond}{Number of milliseconds to wait.} | |
1129 | ||
1130 | \wxheading{Return value} | |
1131 | ||
cc81d32f | 1132 | WaitOnConnect returns true if the connection request completes. This |
2edb0bde | 1133 | does not necessarily mean that the connection was successfully established; |
fa482912 | 1134 | it might also happen that the connection was refused by the peer. Use |
261b9a3d GRG |
1135 | \helpref{IsConnected}{wxsocketbaseisconnected} to distinguish between |
1136 | these two situations. | |
1137 | ||
cc81d32f | 1138 | If the timeout elapses, WaitOnConnect returns false. |
261b9a3d GRG |
1139 | |
1140 | These semantics allow code like this: | |
cf85cb95 | 1141 | |
261b9a3d GRG |
1142 | \begin{verbatim} |
1143 | // Issue the connection request | |
cc81d32f | 1144 | client->Connect(addr, false); |
261b9a3d GRG |
1145 | |
1146 | // Wait until the request completes or until we decide to give up | |
cc81d32f | 1147 | bool waitmore = true; |
a85139a1 | 1148 | while ( !client->WaitOnConnect(seconds, millis) && waitmore ) |
261b9a3d GRG |
1149 | { |
1150 | // possibly give some feedback to the user, | |
f6bcfd97 | 1151 | // and update waitmore as needed. |
261b9a3d GRG |
1152 | } |
1153 | bool success = client->IsConnected(); | |
1154 | \end{verbatim} | |
e79848ac GL |
1155 | |
1156 | \wxheading{See also} | |
1157 | ||
fa482912 JS |
1158 | \helpref{wxSocketClient::Connect}{wxsocketclientconnect}, |
1159 | \helpref{wxSocketBase::InterruptWait}{wxsocketbaseinterruptwait}, | |
105521d1 | 1160 | \helpref{wxSocketBase::IsConnected}{wxsocketbaseisconnected} |
e79848ac GL |
1161 | |
1162 | % --------------------------------------------------------------------------- | |
42ff6409 | 1163 | % CLASS: wxSocketEvent |
e79848ac | 1164 | % --------------------------------------------------------------------------- |
42ff6409 | 1165 | \section{\class{wxSocketEvent}}\label{wxsocketevent} |
e79848ac | 1166 | |
42ff6409 | 1167 | This event class contains information about socket events. |
e79848ac GL |
1168 | |
1169 | \wxheading{Derived from} | |
1170 | ||
42ff6409 | 1171 | \helpref{wxEvent}{wxevent} |
e79848ac | 1172 | |
954b8ae6 JS |
1173 | \wxheading{Include files} |
1174 | ||
1175 | <wx/socket.h> | |
1176 | ||
42ff6409 | 1177 | \wxheading{Event table macros} |
e79848ac | 1178 | |
f6bcfd97 BP |
1179 | To process a socket event, use these event handler macros to direct input |
1180 | to member functions that take a wxSocketEvent argument. | |
e79848ac | 1181 | |
42ff6409 JS |
1182 | \twocolwidtha{7cm} |
1183 | \begin{twocollist}\itemsep=0pt | |
1184 | \twocolitem{{\bf EVT\_SOCKET(id, func)}}{Process a socket event, supplying the member function.} | |
105521d1 | 1185 | \end{twocollist} |
e79848ac GL |
1186 | |
1187 | \wxheading{See also} | |
1188 | ||
407f3681 JS |
1189 | \helpref{wxSocketBase}{wxsocketbase}, |
1190 | \helpref{wxSocketClient}{wxsocketclient}, | |
42ff6409 | 1191 | \helpref{wxSocketServer}{wxsocketserver} |
e79848ac | 1192 | |
42ff6409 | 1193 | \latexignore{\rtfignore{\wxheading{Members}}} |
e79848ac | 1194 | |
42ff6409 | 1195 | \membersection{wxSocketEvent::wxSocketEvent} |
e79848ac | 1196 | |
42ff6409 | 1197 | \func{}{wxSocketEvent}{\param{int}{ id = 0}} |
e79848ac | 1198 | |
42ff6409 | 1199 | Constructor. |
e79848ac | 1200 | |
5adbbc29 GRG |
1201 | \membersection{wxSocketEvent::GetClientData}\label{wxsocketeventgetclientdata} |
1202 | ||
1203 | \func{void *}{GetClientData}{\void} | |
1204 | ||
1205 | Gets the client data of the socket which generated this event, as | |
1206 | set with \helpref{wxSocketBase::SetClientData}{wxsocketbasesetclientdata}. | |
1207 | ||
061379e2 | 1208 | \membersection{wxSocketEvent::GetSocket}\label{wxsocketeventgetsocket} |
e5a2291a | 1209 | |
061379e2 | 1210 | \constfunc{wxSocketBase *}{GetSocket}{\void} |
e5a2291a GRG |
1211 | |
1212 | Returns the socket object to which this event refers to. This makes | |
1213 | it possible to use the same event handler for different sockets. | |
1214 | ||
061379e2 | 1215 | \membersection{wxSocketEvent::GetSocketEvent}\label{wxsocketeventgetsocketevent} |
e79848ac | 1216 | |
061379e2 | 1217 | \constfunc{wxSocketNotify}{GetSocketEvent}{\void} |
e79848ac | 1218 | |
42ff6409 | 1219 | Returns the socket event type. |
e79848ac | 1220 |