]> git.saurik.com Git - wxWidgets.git/blame - src/msw/gsocket.c
added wxDC::DrawPolyPolygon() (patch 882189)
[wxWidgets.git] / src / msw / gsocket.c
CommitLineData
9bbd7ba3 1/* -------------------------------------------------------------------------
9bf10d6b 2 * Project: GSocket (Generic Socket)
9bbd7ba3 3 * Name: gsocket.c
9bf10d6b 4 * Author: Guillermo Rodriguez Garcia <guille@iies.es>
9bbd7ba3 5 * Purpose: GSocket main MSW file
84969af7 6 * Licence: The wxWindows licence
9bbd7ba3
GRG
7 * CVSID: $Id$
8 * -------------------------------------------------------------------------
9 */
10
9bf10d6b
GRG
11/*
12 * PLEASE don't put C++ comments here - this is a C source file.
13 */
14
8a9c2246 15#ifdef _MSC_VER
29c25a8e
GRG
16 /* RPCNOTIFICATION_ROUTINE in rasasync.h (included from winsock.h),
17 * warning: conditional expression is constant.
18 */
19# pragma warning(disable:4115)
20 /* FD_SET,
21 * warning: named type definition in parentheses.
22 */
23# pragma warning(disable:4127)
24 /* GAddress_UNIX_GetPath,
25 * warning: unreferenced formal parameter.
26 */
27# pragma warning(disable:4100)
28#endif /* _MSC_VER */
29
5283098e
JS
30#include <winsock.h>
31
2f7c2af5 32#ifndef __GSOCKET_STANDALONE__
a3f7fa62
VZ
33# include "wx/platform.h"
34# include "wx/setup.h"
0ce742cf
GRG
35#endif
36
37#if wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__)
38
0ce742cf 39#ifndef __GSOCKET_STANDALONE__
ed2eb9af
GRG
40# include "wx/msw/gsockmsw.h"
41# include "wx/gsocket.h"
9bbd7ba3 42#else
ed2eb9af
GRG
43# include "gsockmsw.h"
44# include "gsocket.h"
45#endif /* __GSOCKET_STANDALONE__ */
9bbd7ba3 46
882dfc67 47#ifndef __WXWINCE__
9bbd7ba3 48#include <assert.h>
882dfc67
JS
49#else
50#define assert(x)
51#ifndef isdigit
52#define isdigit(x) (x > 47 && x < 58)
53#endif
54#include "wx/msw/wince/net.h"
55#endif
56
9bbd7ba3
GRG
57#include <string.h>
58#include <stdio.h>
59#include <stdlib.h>
60#include <stddef.h>
61#include <ctype.h>
8a9c2246 62
c42404a5
VZ
63/* if we use configure for MSW SOCKLEN_T will be already defined */
64#ifndef SOCKLEN_T
ed2eb9af 65# define SOCKLEN_T int
c42404a5
VZ
66#endif
67
38bb138f
VS
68/* Table of GUI-related functions. We must call them indirectly because
69 * of wxBase and GUI separation: */
70
71static struct GSocketGUIFunctionsTable *gs_gui_functions;
72
73#define USE_GUI() (gs_gui_functions != NULL)
74
75/* Define macros to simplify indirection: */
76#define _GSocket_GUI_Init() \
77 if (gs_gui_functions) gs_gui_functions->GUI_Init()
78#define _GSocket_GUI_Cleanup() \
79 if (gs_gui_functions) gs_gui_functions->GUI_Cleanup()
80#define _GSocket_GUI_Init_Socket(socket) \
81 (gs_gui_functions ? gs_gui_functions->GUI_Init_Socket(socket) : 1)
82#define _GSocket_GUI_Destroy_Socket(socket) \
83 if (gs_gui_functions) gs_gui_functions->GUI_Destroy_Socket(socket)
84#define _GSocket_Enable_Events(socket) \
85 if (gs_gui_functions) gs_gui_functions->Enable_Events(socket)
86#define _GSocket_Disable_Events(socket) \
87 if (gs_gui_functions) gs_gui_functions->Disable_Events(socket)
88#define _GSocket_Install_Callback(socket, event) \
89 if (gs_gui_functions) gs_gui_functions->Install_Callback(socket, event)
90#define _GSocket_Uninstall_Callback(socket, event) \
91 if (gs_gui_functions) gs_gui_functions->Uninstall_Callback(socket, event)
92
93/* Global initialisers */
94
95void GSocket_SetGUIFunctions(struct GSocketGUIFunctionsTable *guifunc)
96{
97 gs_gui_functions = guifunc;
98}
99
100int GSocket_Init(void)
101{
102 WSADATA wsaData;
103
104 if (gs_gui_functions)
105 {
106 if ( !gs_gui_functions->GUI_Init() )
107 return 0;
108 }
109
110 /* Initialize WinSocket */
111 return (WSAStartup((1 << 8) | 1, &wsaData) == 0);
112}
113
114void GSocket_Cleanup(void)
115{
116 if (gs_gui_functions)
117 {
118 gs_gui_functions->GUI_Cleanup();
119 }
120
121 /* Cleanup WinSocket */
122 WSACleanup();
123}
9bbd7ba3 124
9bf10d6b 125/* Constructors / Destructors for GSocket */
9bbd7ba3 126
da051b23 127GSocket *GSocket_new(void)
9bbd7ba3 128{
ed2eb9af 129 int i, success;
9bbd7ba3
GRG
130 GSocket *socket;
131
132 if ((socket = (GSocket *) malloc(sizeof(GSocket))) == NULL)
133 return NULL;
134
135 socket->m_fd = INVALID_SOCKET;
136 for (i = 0; i < GSOCK_MAX_EVENT; i++)
137 {
138 socket->m_cbacks[i] = NULL;
139 }
ed2eb9af 140 socket->m_detected = 0;
33ac7e6f
KB
141 socket->m_local = NULL;
142 socket->m_peer = NULL;
9bbd7ba3 143 socket->m_error = GSOCK_NOERROR;
33ac7e6f 144 socket->m_server = FALSE;
9bbd7ba3
GRG
145 socket->m_stream = TRUE;
146 socket->m_non_blocking = FALSE;
147 socket->m_timeout.tv_sec = 10 * 60; /* 10 minutes */
b661e675 148 socket->m_timeout.tv_usec = 0;
ed2eb9af 149 socket->m_establishing = FALSE;
9bbd7ba3 150
70988afb 151 /* Per-socket GUI-specific initialization */
38bb138f 152 success = _GSocket_GUI_Init_Socket(socket);
ed2eb9af 153 if (!success)
9bbd7ba3 154 {
70988afb 155 free(socket);
3ca6a5f0 156 socket = NULL;
9bbd7ba3 157 }
9bbd7ba3
GRG
158
159 return socket;
160}
161
007c77ab
RL
162void GSocket_close(GSocket *socket)
163{
164 _GSocket_Disable_Events(socket);
165 closesocket(socket->m_fd);
166 socket->m_fd = INVALID_SOCKET;
167}
168
9bbd7ba3
GRG
169void GSocket_destroy(GSocket *socket)
170{
171 assert(socket != NULL);
172
70988afb 173 /* Per-socket GUI-specific cleanup */
38bb138f 174 _GSocket_GUI_Destroy_Socket(socket);
9bbd7ba3 175
75d684d9 176 /* Check that the socket is really shutdowned */
9bbd7ba3
GRG
177 if (socket->m_fd != INVALID_SOCKET)
178 GSocket_Shutdown(socket);
179
75d684d9 180 /* Destroy private addresses */
9bbd7ba3
GRG
181 if (socket->m_local)
182 GAddress_destroy(socket->m_local);
183
184 if (socket->m_peer)
185 GAddress_destroy(socket->m_peer);
186
9bf10d6b 187 /* Destroy the socket itself */
9bbd7ba3
GRG
188 free(socket);
189}
190
9bf10d6b
GRG
191/* GSocket_Shutdown:
192 * Disallow further read/write operations on this socket, close
193 * the fd and disable all callbacks.
194 */
9bbd7ba3
GRG
195void GSocket_Shutdown(GSocket *socket)
196{
197 int evt;
198
199 assert(socket != NULL);
200
75d684d9 201 /* If socket has been created, shutdown it */
9bbd7ba3
GRG
202 if (socket->m_fd != INVALID_SOCKET)
203 {
9bbd7ba3 204 shutdown(socket->m_fd, 2);
007c77ab 205 GSocket_close(socket);
9bbd7ba3
GRG
206 }
207
75d684d9 208 /* Disable GUI callbacks */
9bbd7ba3 209 for (evt = 0; evt < GSOCK_MAX_EVENT; evt++)
9bbd7ba3 210 socket->m_cbacks[evt] = NULL;
9bbd7ba3 211
557e7011 212 socket->m_detected = GSOCK_LOST_FLAG;
9bbd7ba3
GRG
213}
214
215/* Address handling */
216
9bf10d6b
GRG
217/* GSocket_SetLocal:
218 * GSocket_GetLocal:
219 * GSocket_SetPeer:
220 * GSocket_GetPeer:
221 * Set or get the local or peer address for this socket. The 'set'
222 * functions return GSOCK_NOERROR on success, an error code otherwise.
223 * The 'get' functions return a pointer to a GAddress object on success,
224 * or NULL otherwise, in which case they set the error code of the
225 * corresponding GSocket.
226 *
227 * Error codes:
228 * GSOCK_INVSOCK - the socket is not valid.
229 * GSOCK_INVADDR - the address is not valid.
230 */
9bbd7ba3
GRG
231GSocketError GSocket_SetLocal(GSocket *socket, GAddress *address)
232{
233 assert(socket != NULL);
234
9bf10d6b 235 /* the socket must be initialized, or it must be a server */
9bbd7ba3
GRG
236 if (socket->m_fd != INVALID_SOCKET && !socket->m_server)
237 {
238 socket->m_error = GSOCK_INVSOCK;
239 return GSOCK_INVSOCK;
240 }
241
9bf10d6b 242 /* check address */
9bbd7ba3
GRG
243 if (address == NULL || address->m_family == GSOCK_NOFAMILY)
244 {
245 socket->m_error = GSOCK_INVADDR;
246 return GSOCK_INVADDR;
247 }
248
249 if (socket->m_local)
250 GAddress_destroy(socket->m_local);
251
252 socket->m_local = GAddress_copy(address);
253
254 return GSOCK_NOERROR;
255}
256
257GSocketError GSocket_SetPeer(GSocket *socket, GAddress *address)
258{
259 assert(socket != NULL);
260
9bf10d6b 261 /* check address */
9bbd7ba3
GRG
262 if (address == NULL || address->m_family == GSOCK_NOFAMILY)
263 {
264 socket->m_error = GSOCK_INVADDR;
265 return GSOCK_INVADDR;
266 }
267
268 if (socket->m_peer)
269 GAddress_destroy(socket->m_peer);
270
271 socket->m_peer = GAddress_copy(address);
272
273 return GSOCK_NOERROR;
274}
275
276GAddress *GSocket_GetLocal(GSocket *socket)
277{
278 GAddress *address;
279 struct sockaddr addr;
85806dc2
GRG
280 SOCKLEN_T size = sizeof(addr);
281 GSocketError err;
9bbd7ba3
GRG
282
283 assert(socket != NULL);
284
9bf10d6b 285 /* try to get it from the m_local var first */
9bbd7ba3
GRG
286 if (socket->m_local)
287 return GAddress_copy(socket->m_local);
288
9bf10d6b 289 /* else, if the socket is initialized, try getsockname */
9bbd7ba3
GRG
290 if (socket->m_fd == INVALID_SOCKET)
291 {
292 socket->m_error = GSOCK_INVSOCK;
293 return NULL;
294 }
295
9bbd7ba3
GRG
296 if (getsockname(socket->m_fd, &addr, &size) == SOCKET_ERROR)
297 {
298 socket->m_error = GSOCK_IOERR;
299 return NULL;
300 }
301
9bf10d6b
GRG
302 /* got a valid address from getsockname, create a GAddress object */
303 if ((address = GAddress_new()) == NULL)
9bbd7ba3
GRG
304 {
305 socket->m_error = GSOCK_MEMERR;
306 return NULL;
307 }
9bf10d6b
GRG
308
309 if ((err = _GAddress_translate_from(address, &addr, size)) != GSOCK_NOERROR)
9bbd7ba3 310 {
9bbd7ba3 311 GAddress_destroy(address);
85806dc2 312 socket->m_error = err;
9bbd7ba3
GRG
313 return NULL;
314 }
315
316 return address;
317}
318
319GAddress *GSocket_GetPeer(GSocket *socket)
320{
321 assert(socket != NULL);
322
9bf10d6b 323 /* try to get it from the m_peer var */
9bbd7ba3
GRG
324 if (socket->m_peer)
325 return GAddress_copy(socket->m_peer);
326
327 return NULL;
328}
329
330/* Server specific parts */
331
332/* GSocket_SetServer:
9bf10d6b
GRG
333 * Sets up this socket as a server. The local address must have been
334 * set with GSocket_SetLocal() before GSocket_SetServer() is called.
335 * Returns GSOCK_NOERROR on success, one of the following otherwise:
33ac7e6f 336 *
9bf10d6b
GRG
337 * Error codes:
338 * GSOCK_INVSOCK - the socket is in use.
339 * GSOCK_INVADDR - the local address has not been set.
33ac7e6f 340 * GSOCK_IOERR - low-level error.
9bbd7ba3
GRG
341 */
342GSocketError GSocket_SetServer(GSocket *sck)
343{
344 u_long arg = 1;
345
346 assert(sck != NULL);
347
9bf10d6b 348 /* must not be in use */
9bbd7ba3
GRG
349 if (sck->m_fd != INVALID_SOCKET)
350 {
351 sck->m_error = GSOCK_INVSOCK;
352 return GSOCK_INVSOCK;
353 }
354
9bf10d6b 355 /* the local addr must have been set */
9bbd7ba3
GRG
356 if (!sck->m_local)
357 {
358 sck->m_error = GSOCK_INVADDR;
359 return GSOCK_INVADDR;
360 }
361
362 /* Initialize all fields */
363 sck->m_server = TRUE;
364 sck->m_stream = TRUE;
365 sck->m_oriented = TRUE;
366
367 /* Create the socket */
368 sck->m_fd = socket(sck->m_local->m_realfamily, SOCK_STREAM, 0);
9bbd7ba3
GRG
369
370 if (sck->m_fd == INVALID_SOCKET)
371 {
372 sck->m_error = GSOCK_IOERR;
373 return GSOCK_IOERR;
374 }
375
483c6690 376 ioctlsocket(sck->m_fd, FIONBIO, (u_long FAR *) &arg);
75d684d9 377 _GSocket_Enable_Events(sck);
483c6690 378
e8b7a986
JS
379 /* allow a socket to re-bind if the socket is in the TIME_WAIT
380 state after being previously closed.
381 */
382 setsockopt(sck->m_fd, SOL_SOCKET, SO_REUSEADDR, (const char*)&arg, sizeof(u_long));
383
9bf10d6b
GRG
384 /* Bind to the local address,
385 * retrieve the actual address bound,
386 * and listen up to 5 connections.
387 */
388 if ((bind(sck->m_fd, sck->m_local->m_addr, sck->m_local->m_len) != 0) ||
389 (getsockname(sck->m_fd,
390 sck->m_local->m_addr,
378d2bd3 391 (SOCKLEN_T *)&sck->m_local->m_len) != 0) ||
9bf10d6b 392 (listen(sck->m_fd, 5) != 0))
9bbd7ba3 393 {
007c77ab 394 GSocket_close(sck);
9bbd7ba3
GRG
395 sck->m_error = GSOCK_IOERR;
396 return GSOCK_IOERR;
397 }
398
399 return GSOCK_NOERROR;
b661e675 400}
9bbd7ba3
GRG
401
402/* GSocket_WaitConnection:
9bf10d6b
GRG
403 * Waits for an incoming client connection. Returns a pointer to
404 * a GSocket object, or NULL if there was an error, in which case
405 * the last error field will be updated for the calling GSocket.
406 *
407 * Error codes (set in the calling GSocket)
408 * GSOCK_INVSOCK - the socket is not valid or not a server.
409 * GSOCK_TIMEDOUT - timeout, no incoming connections.
410 * GSOCK_WOULDBLOCK - the call would block and the socket is nonblocking.
411 * GSOCK_MEMERR - couldn't allocate memory.
33ac7e6f 412 * GSOCK_IOERR - low-level error.
9bbd7ba3
GRG
413 */
414GSocket *GSocket_WaitConnection(GSocket *sck)
415{
416 GSocket *connection;
85806dc2
GRG
417 struct sockaddr from;
418 SOCKLEN_T fromlen = sizeof(from);
419 GSocketError err;
9bbd7ba3
GRG
420 u_long arg = 1;
421
422 assert(sck != NULL);
423
9bf10d6b 424 /* Reenable CONNECTION events */
75d684d9
GRG
425 sck->m_detected &= ~GSOCK_CONNECTION_FLAG;
426
9bf10d6b 427 /* If the socket has already been created, we exit immediately */
9bbd7ba3
GRG
428 if (sck->m_fd == INVALID_SOCKET || !sck->m_server)
429 {
430 sck->m_error = GSOCK_INVSOCK;
431 return NULL;
432 }
433
434 /* Create a GSocket object for the new connection */
435 connection = GSocket_new();
436
437 if (!connection)
438 {
439 sck->m_error = GSOCK_MEMERR;
440 return NULL;
441 }
442
443 /* Wait for a connection (with timeout) */
444 if (_GSocket_Input_Timeout(sck) == GSOCK_TIMEDOUT)
445 {
446 GSocket_destroy(connection);
447 /* sck->m_error set by _GSocket_Input_Timeout */
448 return NULL;
449 }
450
85806dc2 451 connection->m_fd = accept(sck->m_fd, &from, &fromlen);
9bbd7ba3
GRG
452
453 if (connection->m_fd == INVALID_SOCKET)
454 {
aa3981f2
GRG
455 if (WSAGetLastError() == WSAEWOULDBLOCK)
456 sck->m_error = GSOCK_WOULDBLOCK;
457 else
458 sck->m_error = GSOCK_IOERR;
459
9bbd7ba3 460 GSocket_destroy(connection);
9bbd7ba3
GRG
461 return NULL;
462 }
463
464 /* Initialize all fields */
465 connection->m_server = FALSE;
466 connection->m_stream = TRUE;
467 connection->m_oriented = TRUE;
468
85806dc2
GRG
469 /* Setup the peer address field */
470 connection->m_peer = GAddress_new();
471 if (!connection->m_peer)
472 {
473 GSocket_destroy(connection);
474 sck->m_error = GSOCK_MEMERR;
475 return NULL;
476 }
477 err = _GAddress_translate_from(connection->m_peer, &from, fromlen);
478 if (err != GSOCK_NOERROR)
479 {
480 GAddress_destroy(connection->m_peer);
481 GSocket_destroy(connection);
482 sck->m_error = err;
483 return NULL;
484 }
485
cb421e53 486 ioctlsocket(connection->m_fd, FIONBIO, (u_long FAR *) &arg);
75d684d9 487 _GSocket_Enable_Events(connection);
cb421e53 488
9bbd7ba3
GRG
489 return connection;
490}
491
9bbd7ba3
GRG
492/* Client specific parts */
493
494/* GSocket_Connect:
9bf10d6b
GRG
495 * For stream (connection oriented) sockets, GSocket_Connect() tries
496 * to establish a client connection to a server using the peer address
497 * as established with GSocket_SetPeer(). Returns GSOCK_NOERROR if the
498 * connection has been succesfully established, or one of the error
499 * codes listed below. Note that for nonblocking sockets, a return
500 * value of GSOCK_WOULDBLOCK doesn't mean a failure. The connection
501 * request can be completed later; you should use GSocket_Select()
502 * to poll for GSOCK_CONNECTION | GSOCK_LOST, or wait for the
503 * corresponding asynchronous events.
504 *
505 * For datagram (non connection oriented) sockets, GSocket_Connect()
506 * just sets the peer address established with GSocket_SetPeer() as
507 * default destination.
508 *
509 * Error codes:
510 * GSOCK_INVSOCK - the socket is in use or not valid.
511 * GSOCK_INVADDR - the peer address has not been established.
512 * GSOCK_TIMEDOUT - timeout, the connection failed.
513 * GSOCK_WOULDBLOCK - connection in progress (nonblocking sockets only)
514 * GSOCK_MEMERR - couldn't allocate memory.
33ac7e6f 515 * GSOCK_IOERR - low-level error.
9bbd7ba3
GRG
516 */
517GSocketError GSocket_Connect(GSocket *sck, GSocketStream stream)
518{
9bf10d6b 519 int ret, err;
9bbd7ba3 520 u_long arg = 1;
9bbd7ba3
GRG
521
522 assert(sck != NULL);
523
9bf10d6b 524 /* Enable CONNECTION events (needed for nonblocking connections) */
75d684d9
GRG
525 sck->m_detected &= ~GSOCK_CONNECTION_FLAG;
526
9bbd7ba3
GRG
527 if (sck->m_fd != INVALID_SOCKET)
528 {
529 sck->m_error = GSOCK_INVSOCK;
530 return GSOCK_INVSOCK;
531 }
532
533 if (!sck->m_peer)
534 {
535 sck->m_error = GSOCK_INVADDR;
536 return GSOCK_INVADDR;
537 }
538
9bf10d6b 539 /* Streamed or dgram socket? */
9bbd7ba3
GRG
540 sck->m_stream = (stream == GSOCK_STREAMED);
541 sck->m_oriented = TRUE;
542 sck->m_server = FALSE;
ed2eb9af 543 sck->m_establishing = FALSE;
9bbd7ba3 544
9bbd7ba3 545 /* Create the socket */
9bf10d6b
GRG
546 sck->m_fd = socket(sck->m_peer->m_realfamily,
547 sck->m_stream? SOCK_STREAM : SOCK_DGRAM, 0);
9bbd7ba3
GRG
548
549 if (sck->m_fd == INVALID_SOCKET)
550 {
551 sck->m_error = GSOCK_IOERR;
552 return GSOCK_IOERR;
553 }
554
483c6690 555 ioctlsocket(sck->m_fd, FIONBIO, (u_long FAR *) &arg);
75d684d9 556 _GSocket_Enable_Events(sck);
483c6690 557
9bf10d6b 558 /* Connect it to the peer address, with a timeout (see below) */
9bbd7ba3
GRG
559 ret = connect(sck->m_fd, sck->m_peer->m_addr, sck->m_peer->m_len);
560
561 if (ret == SOCKET_ERROR)
562 {
aa3981f2
GRG
563 err = WSAGetLastError();
564
565 /* If connect failed with EWOULDBLOCK and the GSocket object
566 * is in blocking mode, we select() for the specified timeout
567 * checking for writability to see if the connection request
568 * completes.
9bbd7ba3 569 */
cb421e53 570 if ((err == WSAEWOULDBLOCK) && (!sck->m_non_blocking))
9bbd7ba3 571 {
9bf10d6b
GRG
572 err = _GSocket_Connect_Timeout(sck);
573
574 if (err != GSOCK_NOERROR)
9bbd7ba3 575 {
007c77ab 576 GSocket_close(sck);
9bf10d6b 577 /* sck->m_error is set in _GSocket_Connect_Timeout */
9bbd7ba3 578 }
9bf10d6b 579
ba14d986 580 return (GSocketError) err;
9bbd7ba3 581 }
aa3981f2
GRG
582
583 /* If connect failed with EWOULDBLOCK and the GSocket object
584 * is set to nonblocking, we set m_error to GSOCK_WOULDBLOCK
585 * (and return GSOCK_WOULDBLOCK) but we don't close the socket;
586 * this way if the connection completes, a GSOCK_CONNECTION
587 * event will be generated, if enabled.
588 */
cb421e53 589 if ((err == WSAEWOULDBLOCK) && (sck->m_non_blocking))
9bbd7ba3 590 {
ed2eb9af 591 sck->m_establishing = TRUE;
aa3981f2
GRG
592 sck->m_error = GSOCK_WOULDBLOCK;
593 return GSOCK_WOULDBLOCK;
9bbd7ba3 594 }
aa3981f2
GRG
595
596 /* If connect failed with an error other than EWOULDBLOCK,
9bf10d6b 597 * then the call to GSocket_Connect() has failed.
aa3981f2 598 */
007c77ab 599 GSocket_close(sck);
aa3981f2
GRG
600 sck->m_error = GSOCK_IOERR;
601 return GSOCK_IOERR;
9bbd7ba3
GRG
602 }
603
604 return GSOCK_NOERROR;
605}
606
9bf10d6b
GRG
607/* Datagram sockets */
608
609/* GSocket_SetNonOriented:
610 * Sets up this socket as a non-connection oriented (datagram) socket.
611 * Before using this function, the local address must have been set
612 * with GSocket_SetLocal(), or the call will fail. Returns GSOCK_NOERROR
613 * on success, or one of the following otherwise.
614 *
615 * Error codes:
616 * GSOCK_INVSOCK - the socket is in use.
617 * GSOCK_INVADDR - the local address has not been set.
33ac7e6f 618 * GSOCK_IOERR - low-level error.
9bf10d6b
GRG
619 */
620GSocketError GSocket_SetNonOriented(GSocket *sck)
621{
622 u_long arg = 1;
623
624 assert(sck != NULL);
625
626 if (sck->m_fd != INVALID_SOCKET)
627 {
628 sck->m_error = GSOCK_INVSOCK;
629 return GSOCK_INVSOCK;
630 }
631
632 if (!sck->m_local)
633 {
634 sck->m_error = GSOCK_INVADDR;
635 return GSOCK_INVADDR;
636 }
637
638 /* Initialize all fields */
639 sck->m_stream = FALSE;
640 sck->m_server = FALSE;
641 sck->m_oriented = FALSE;
642
643 /* Create the socket */
644 sck->m_fd = socket(sck->m_local->m_realfamily, SOCK_DGRAM, 0);
645
646 if (sck->m_fd == INVALID_SOCKET)
647 {
648 sck->m_error = GSOCK_IOERR;
649 return GSOCK_IOERR;
650 }
651
652 ioctlsocket(sck->m_fd, FIONBIO, (u_long FAR *) &arg);
653 _GSocket_Enable_Events(sck);
654
655 /* Bind to the local address,
656 * and retrieve the actual address bound.
657 */
658 if ((bind(sck->m_fd, sck->m_local->m_addr, sck->m_local->m_len) != 0) ||
659 (getsockname(sck->m_fd,
660 sck->m_local->m_addr,
378d2bd3 661 (SOCKLEN_T *)&sck->m_local->m_len) != 0))
9bf10d6b 662 {
007c77ab 663 GSocket_close(sck);
9bf10d6b
GRG
664 sck->m_error = GSOCK_IOERR;
665 return GSOCK_IOERR;
666 }
667
668 return GSOCK_NOERROR;
669}
670
9bbd7ba3
GRG
671/* Generic IO */
672
673/* Like recv(), send(), ... */
674int GSocket_Read(GSocket *socket, char *buffer, int size)
675{
75d684d9
GRG
676 int ret;
677
9bbd7ba3
GRG
678 assert(socket != NULL);
679
9bf10d6b 680 /* Reenable INPUT events */
75d684d9
GRG
681 socket->m_detected &= ~GSOCK_INPUT_FLAG;
682
9bbd7ba3
GRG
683 if (socket->m_fd == INVALID_SOCKET || socket->m_server)
684 {
685 socket->m_error = GSOCK_INVSOCK;
686 return -1;
687 }
688
75d684d9 689 /* If the socket is blocking, wait for data (with a timeout) */
9bbd7ba3
GRG
690 if (_GSocket_Input_Timeout(socket) == GSOCK_TIMEDOUT)
691 return -1;
692
75d684d9 693 /* Read the data */
9bbd7ba3 694 if (socket->m_stream)
75d684d9 695 ret = _GSocket_Recv_Stream(socket, buffer, size);
9bbd7ba3 696 else
75d684d9
GRG
697 ret = _GSocket_Recv_Dgram(socket, buffer, size);
698
699 if (ret == SOCKET_ERROR)
700 {
75d684d9 701 if (WSAGetLastError() != WSAEWOULDBLOCK)
75d684d9 702 socket->m_error = GSOCK_IOERR;
75d684d9 703 else
75d684d9 704 socket->m_error = GSOCK_WOULDBLOCK;
9bf10d6b 705 return -1;
75d684d9
GRG
706 }
707
708 return ret;
9bbd7ba3
GRG
709}
710
711int GSocket_Write(GSocket *socket, const char *buffer, int size)
712{
75d684d9
GRG
713 int ret;
714
9bbd7ba3
GRG
715 assert(socket != NULL);
716
717 if (socket->m_fd == INVALID_SOCKET || socket->m_server)
718 {
719 socket->m_error = GSOCK_INVSOCK;
720 return -1;
721 }
722
75d684d9 723 /* If the socket is blocking, wait for writability (with a timeout) */
9bbd7ba3
GRG
724 if (_GSocket_Output_Timeout(socket) == GSOCK_TIMEDOUT)
725 return -1;
726
9bf10d6b 727 /* Write the data */
9bbd7ba3 728 if (socket->m_stream)
75d684d9 729 ret = _GSocket_Send_Stream(socket, buffer, size);
9bbd7ba3 730 else
75d684d9
GRG
731 ret = _GSocket_Send_Dgram(socket, buffer, size);
732
733 if (ret == SOCKET_ERROR)
734 {
735 if (WSAGetLastError() != WSAEWOULDBLOCK)
736 socket->m_error = GSOCK_IOERR;
737 else
738 socket->m_error = GSOCK_WOULDBLOCK;
739
9bf10d6b
GRG
740 /* Only reenable OUTPUT events after an error (just like WSAAsyncSelect
741 * does). Once the first OUTPUT event is received, users can assume
742 * that the socket is writable until a read operation fails. Only then
743 * will further OUTPUT events be posted.
744 */
75d684d9
GRG
745 socket->m_detected &= ~GSOCK_OUTPUT_FLAG;
746 return -1;
747 }
748
749 return ret;
9bbd7ba3
GRG
750}
751
483c6690
GRG
752/* GSocket_Select:
753 * Polls the socket to determine its status. This function will
754 * check for the events specified in the 'flags' parameter, and
755 * it will return a mask indicating which operations can be
756 * performed. This function won't block, regardless of the
9bf10d6b 757 * mode (blocking | nonblocking) of the socket.
483c6690
GRG
758 */
759GSocketEventFlags GSocket_Select(GSocket *socket, GSocketEventFlags flags)
9bbd7ba3 760{
4368b1a6 761 if (!USE_GUI())
7235a82e
VS
762 {
763 GSocketEventFlags result = 0;
764 fd_set readfds;
765 fd_set writefds;
766 fd_set exceptfds;
b1a8a610 767
7235a82e 768 assert(socket != NULL);
9bbd7ba3 769
7235a82e
VS
770 FD_ZERO(&readfds);
771 FD_ZERO(&writefds);
772 FD_ZERO(&exceptfds);
773 FD_SET(socket->m_fd, &readfds);
b1a8a610
JS
774 if (flags & GSOCK_OUTPUT_FLAG)
775 FD_SET(socket->m_fd, &writefds);
7235a82e 776 FD_SET(socket->m_fd, &exceptfds);
ed2eb9af 777
7235a82e
VS
778 /* Check 'sticky' CONNECTION flag first */
779 result |= (GSOCK_CONNECTION_FLAG & socket->m_detected);
42b7406d 780
7235a82e
VS
781 /* If we have already detected a LOST event, then don't try
782 * to do any further processing.
783 */
784 if ((socket->m_detected & GSOCK_LOST_FLAG) != 0)
785 {
786 socket->m_establishing = FALSE;
ed2eb9af 787
7235a82e
VS
788 return (GSOCK_LOST_FLAG & flags);
789 }
42b7406d 790
7235a82e 791 /* Try select now */
b1a8a610
JS
792 if (select(socket->m_fd + 1, &readfds, &writefds, &exceptfds,
793 &socket->m_timeout) <= 0)
42b7406d 794 {
7235a82e
VS
795 /* What to do here? */
796 return (result & flags);
42b7406d 797 }
7235a82e
VS
798
799 /* Check for readability */
800 if (FD_ISSET(socket->m_fd, &readfds))
42b7406d 801 {
7235a82e
VS
802 char c;
803
b1a8a610 804 if (!socket->m_stream || recv(socket->m_fd, &c, 1, MSG_PEEK) > 0)
42b7406d 805 {
7235a82e 806 result |= GSOCK_INPUT_FLAG;
42b7406d
SN
807 }
808 else
809 {
7235a82e
VS
810 if (socket->m_server && socket->m_stream)
811 {
812 result |= GSOCK_CONNECTION_FLAG;
813 socket->m_detected |= GSOCK_CONNECTION_FLAG;
814 }
815 else
816 {
817 socket->m_detected = GSOCK_LOST_FLAG;
818 socket->m_establishing = FALSE;
819
820 /* LOST event: Abort any further processing */
821 return (GSOCK_LOST_FLAG & flags);
822 }
42b7406d
SN
823 }
824 }
ed2eb9af 825
7235a82e
VS
826 /* Check for writability */
827 if (FD_ISSET(socket->m_fd, &writefds))
ed2eb9af 828 {
7235a82e
VS
829 if (socket->m_establishing && !socket->m_server)
830 {
831 int error;
832 SOCKLEN_T len = sizeof(error);
42b7406d 833
7235a82e 834 socket->m_establishing = FALSE;
42b7406d 835
7235a82e 836 getsockopt(socket->m_fd, SOL_SOCKET, SO_ERROR, (void*)&error, &len);
42b7406d 837
7235a82e
VS
838 if (error)
839 {
840 socket->m_detected = GSOCK_LOST_FLAG;
42b7406d 841
7235a82e
VS
842 /* LOST event: Abort any further processing */
843 return (GSOCK_LOST_FLAG & flags);
844 }
845 else
846 {
847 result |= GSOCK_CONNECTION_FLAG;
848 socket->m_detected |= GSOCK_CONNECTION_FLAG;
849 }
42b7406d
SN
850 }
851 else
852 {
7235a82e 853 result |= GSOCK_OUTPUT_FLAG;
42b7406d 854 }
ed2eb9af 855 }
7235a82e
VS
856
857 /* Check for exceptions and errors (is this useful in Unices?) */
858 if (FD_ISSET(socket->m_fd, &exceptfds))
42b7406d 859 {
7235a82e
VS
860 socket->m_establishing = FALSE;
861 socket->m_detected = GSOCK_LOST_FLAG;
862
863 /* LOST event: Abort any further processing */
864 return (GSOCK_LOST_FLAG & flags);
42b7406d 865 }
ed2eb9af 866
7235a82e
VS
867 return (result & flags);
868 }
4368b1a6 869 else /* USE_GUI() */
ed2eb9af 870 {
7235a82e
VS
871 assert(socket != NULL);
872 return flags & socket->m_detected;
ed2eb9af 873 }
9bbd7ba3
GRG
874}
875
9bf10d6b 876/* Attributes */
9bbd7ba3
GRG
877
878/* GSocket_SetNonBlocking:
9bf10d6b
GRG
879 * Sets the socket to non-blocking mode. All IO calls will return
880 * immediately.
9bbd7ba3 881 */
5c9eff30 882void GSocket_SetNonBlocking(GSocket *socket, int non_block)
9bbd7ba3
GRG
883{
884 assert(socket != NULL);
885
886 socket->m_non_blocking = non_block;
887}
888
889/* GSocket_SetTimeout:
9bf10d6b
GRG
890 * Sets the timeout for blocking calls. Time is expressed in
891 * milliseconds.
9bbd7ba3 892 */
75d684d9 893void GSocket_SetTimeout(GSocket *socket, unsigned long millis)
9bbd7ba3
GRG
894{
895 assert(socket != NULL);
896
75d684d9
GRG
897 socket->m_timeout.tv_sec = (millis / 1000);
898 socket->m_timeout.tv_usec = (millis % 1000) * 1000;
9bbd7ba3
GRG
899}
900
901/* GSocket_GetError:
9bf10d6b
GRG
902 * Returns the last error occured for this socket. Note that successful
903 * operations do not clear this back to GSOCK_NOERROR, so use it only
904 * after an error.
9bbd7ba3 905 */
82805fe2 906GSocketError GSocket_GetError(GSocket *socket)
9bbd7ba3
GRG
907{
908 assert(socket != NULL);
909
910 return socket->m_error;
911}
912
913/* Callbacks */
914
9bf10d6b
GRG
915/* GSOCK_INPUT:
916 * There is data to be read in the input buffer. If, after a read
917 * operation, there is still data available, the callback function will
918 * be called again.
919 * GSOCK_OUTPUT:
33ac7e6f 920 * The socket is available for writing. That is, the next write call
9bf10d6b
GRG
921 * won't block. This event is generated only once, when the connection is
922 * first established, and then only if a call failed with GSOCK_WOULDBLOCK,
923 * when the output buffer empties again. This means that the app should
924 * assume that it can write since the first OUTPUT event, and no more
925 * OUTPUT events will be generated unless an error occurs.
926 * GSOCK_CONNECTION:
927 * Connection succesfully established, for client sockets, or incoming
928 * client connection, for server sockets. Wait for this event (also watch
929 * out for GSOCK_LOST) after you issue a nonblocking GSocket_Connect() call.
930 * GSOCK_LOST:
931 * The connection is lost (or a connection request failed); this could
932 * be due to a failure, or due to the peer closing it gracefully.
9bbd7ba3
GRG
933 */
934
935/* GSocket_SetCallback:
483c6690 936 * Enables the callbacks specified by 'flags'. Note that 'flags'
9bbd7ba3
GRG
937 * may be a combination of flags OR'ed toghether, so the same
938 * callback function can be made to accept different events.
939 * The callback function must have the following prototype:
940 *
941 * void function(GSocket *socket, GSocketEvent event, char *cdata)
942 */
483c6690 943void GSocket_SetCallback(GSocket *socket, GSocketEventFlags flags,
9bbd7ba3
GRG
944 GSocketCallback callback, char *cdata)
945{
946 int count;
947
9bf10d6b 948 assert(socket != NULL);
9bbd7ba3
GRG
949
950 for (count = 0; count < GSOCK_MAX_EVENT; count++)
951 {
483c6690 952 if ((flags & (1 << count)) != 0)
9bbd7ba3
GRG
953 {
954 socket->m_cbacks[count] = callback;
955 socket->m_data[count] = cdata;
956 }
957 }
9bbd7ba3
GRG
958}
959
960/* GSocket_UnsetCallback:
483c6690 961 * Disables all callbacks specified by 'flags', which may be a
9bbd7ba3
GRG
962 * combination of flags OR'ed toghether.
963 */
483c6690 964void GSocket_UnsetCallback(GSocket *socket, GSocketEventFlags flags)
9bbd7ba3 965{
9bf10d6b 966 int count;
9bbd7ba3
GRG
967
968 assert(socket != NULL);
969
970 for (count = 0; count < GSOCK_MAX_EVENT; count++)
971 {
483c6690 972 if ((flags & (1 << count)) != 0)
9bbd7ba3
GRG
973 {
974 socket->m_cbacks[count] = NULL;
75d684d9 975 socket->m_data[count] = NULL;
9bbd7ba3
GRG
976 }
977 }
9bbd7ba3
GRG
978}
979
70988afb 980/* Internals (IO) */
9bbd7ba3
GRG
981
982/* _GSocket_Input_Timeout:
983 * For blocking sockets, wait until data is available or
984 * until timeout ellapses.
985 */
986GSocketError _GSocket_Input_Timeout(GSocket *socket)
987{
988 fd_set readfds;
989
cb421e53 990 if (!socket->m_non_blocking)
9bbd7ba3
GRG
991 {
992 FD_ZERO(&readfds);
993 FD_SET(socket->m_fd, &readfds);
994 if (select(0, &readfds, NULL, NULL, &socket->m_timeout) == 0)
995 {
996 socket->m_error = GSOCK_TIMEDOUT;
997 return GSOCK_TIMEDOUT;
998 }
999 }
1000 return GSOCK_NOERROR;
1001}
1002
1003/* _GSocket_Output_Timeout:
1004 * For blocking sockets, wait until data can be sent without
1005 * blocking or until timeout ellapses.
1006 */
1007GSocketError _GSocket_Output_Timeout(GSocket *socket)
1008{
1009 fd_set writefds;
1010
cb421e53 1011 if (!socket->m_non_blocking)
9bbd7ba3
GRG
1012 {
1013 FD_ZERO(&writefds);
1014 FD_SET(socket->m_fd, &writefds);
1015 if (select(0, NULL, &writefds, NULL, &socket->m_timeout) == 0)
1016 {
1017 socket->m_error = GSOCK_TIMEDOUT;
1018 return GSOCK_TIMEDOUT;
1019 }
1020 }
1021 return GSOCK_NOERROR;
1022}
1023
9bf10d6b
GRG
1024/* _GSocket_Connect_Timeout:
1025 * For blocking sockets, wait until the connection is
1026 * established or fails, or until timeout ellapses.
1027 */
1028GSocketError _GSocket_Connect_Timeout(GSocket *socket)
1029{
1030 fd_set writefds;
1031 fd_set exceptfds;
1032
5330a869
GRG
1033 FD_ZERO(&writefds);
1034 FD_ZERO(&exceptfds);
1035 FD_SET(socket->m_fd, &writefds);
1036 FD_SET(socket->m_fd, &exceptfds);
1037 if (select(0, NULL, &writefds, &exceptfds, &socket->m_timeout) == 0)
9bf10d6b 1038 {
5330a869
GRG
1039 socket->m_error = GSOCK_TIMEDOUT;
1040 return GSOCK_TIMEDOUT;
9bf10d6b
GRG
1041 }
1042 if (!FD_ISSET(socket->m_fd, &writefds))
1043 {
1044 socket->m_error = GSOCK_IOERR;
1045 return GSOCK_IOERR;
1046 }
1047
1048 return GSOCK_NOERROR;
1049}
1050
9bbd7ba3
GRG
1051int _GSocket_Recv_Stream(GSocket *socket, char *buffer, int size)
1052{
75d684d9 1053 return recv(socket->m_fd, buffer, size, 0);
9bbd7ba3
GRG
1054}
1055
1056int _GSocket_Recv_Dgram(GSocket *socket, char *buffer, int size)
1057{
1058 struct sockaddr from;
75d684d9 1059 SOCKLEN_T fromlen = sizeof(from);
9bbd7ba3 1060 int ret;
85806dc2 1061 GSocketError err;
9bbd7ba3 1062
9bbd7ba3
GRG
1063 ret = recvfrom(socket->m_fd, buffer, size, 0, &from, &fromlen);
1064
1065 if (ret == SOCKET_ERROR)
75d684d9 1066 return SOCKET_ERROR;
9bbd7ba3
GRG
1067
1068 /* Translate a system address into a GSocket address */
1069 if (!socket->m_peer)
1070 {
1071 socket->m_peer = GAddress_new();
1072 if (!socket->m_peer)
1073 {
1074 socket->m_error = GSOCK_MEMERR;
1075 return -1;
1076 }
1077 }
85806dc2
GRG
1078 err = _GAddress_translate_from(socket->m_peer, &from, fromlen);
1079 if (err != GSOCK_NOERROR)
9bbd7ba3 1080 {
cb421e53 1081 GAddress_destroy(socket->m_peer);
85806dc2
GRG
1082 socket->m_peer = NULL;
1083 socket->m_error = err;
9bbd7ba3
GRG
1084 return -1;
1085 }
1086
1087 return ret;
1088}
1089
1090int _GSocket_Send_Stream(GSocket *socket, const char *buffer, int size)
1091{
75d684d9 1092 return send(socket->m_fd, buffer, size, 0);
9bbd7ba3
GRG
1093}
1094
1095int _GSocket_Send_Dgram(GSocket *socket, const char *buffer, int size)
1096{
1097 struct sockaddr *addr;
1098 int len, ret;
85806dc2 1099 GSocketError err;
9bbd7ba3
GRG
1100
1101 if (!socket->m_peer)
1102 {
1103 socket->m_error = GSOCK_INVADDR;
1104 return -1;
1105 }
1106
85806dc2
GRG
1107 err = _GAddress_translate_to(socket->m_peer, &addr, &len);
1108 if (err != GSOCK_NOERROR)
9bbd7ba3 1109 {
85806dc2 1110 socket->m_error = err;
9bbd7ba3
GRG
1111 return -1;
1112 }
1113
1114 ret = sendto(socket->m_fd, buffer, size, 0, addr, len);
1115
1116 /* Frees memory allocated by _GAddress_translate_to */
1117 free(addr);
1118
9bbd7ba3
GRG
1119 return ret;
1120}
1121
1122
1123/*
1124 * -------------------------------------------------------------------------
1125 * GAddress
1126 * -------------------------------------------------------------------------
1127 */
1128
032d5581
GRG
1129/* CHECK_ADDRESS verifies that the current address family is either
1130 * GSOCK_NOFAMILY or GSOCK_*family*, and if it is GSOCK_NOFAMILY, it
1131 * initalizes it to be a GSOCK_*family*. In other cases, it returns
1132 * an appropiate error code.
1133 *
1134 * CHECK_ADDRESS_RETVAL does the same but returning 'retval' on error.
9bbd7ba3 1135 */
032d5581 1136#define CHECK_ADDRESS(address, family) \
9bbd7ba3
GRG
1137{ \
1138 if (address->m_family == GSOCK_NOFAMILY) \
1139 if (_GAddress_Init_##family(address) != GSOCK_NOERROR) \
1140 return address->m_error; \
1141 if (address->m_family != GSOCK_##family) \
032d5581
GRG
1142 { \
1143 address->m_error = GSOCK_INVADDR; \
1144 return GSOCK_INVADDR; \
1145 } \
1146}
1147
1148#define CHECK_ADDRESS_RETVAL(address, family, retval) \
1149{ \
1150 if (address->m_family == GSOCK_NOFAMILY) \
1151 if (_GAddress_Init_##family(address) != GSOCK_NOERROR) \
1152 return retval; \
1153 if (address->m_family != GSOCK_##family) \
9bbd7ba3
GRG
1154 { \
1155 address->m_error = GSOCK_INVADDR; \
1156 return retval; \
1157 } \
1158}
1159
032d5581 1160
da051b23 1161GAddress *GAddress_new(void)
9bbd7ba3
GRG
1162{
1163 GAddress *address;
1164
1165 if ((address = (GAddress *) malloc(sizeof(GAddress))) == NULL)
1166 return NULL;
1167
1168 address->m_family = GSOCK_NOFAMILY;
1169 address->m_addr = NULL;
1170 address->m_len = 0;
1171
1172 return address;
1173}
1174
1175GAddress *GAddress_copy(GAddress *address)
1176{
1177 GAddress *addr2;
1178
1179 assert(address != NULL);
1180
1181 if ((addr2 = (GAddress *) malloc(sizeof(GAddress))) == NULL)
1182 return NULL;
1183
1184 memcpy(addr2, address, sizeof(GAddress));
1185
1186 if (address->m_addr)
1187 {
1188 addr2->m_addr = (struct sockaddr *) malloc(addr2->m_len);
1189 if (addr2->m_addr == NULL)
1190 {
1191 free(addr2);
1192 return NULL;
1193 }
1194 memcpy(addr2->m_addr, address->m_addr, addr2->m_len);
1195 }
1196
1197 return addr2;
1198}
1199
1200void GAddress_destroy(GAddress *address)
1201{
1202 assert(address != NULL);
1203
29c25a8e
GRG
1204 if (address->m_addr)
1205 free(address->m_addr);
1206
9bbd7ba3
GRG
1207 free(address);
1208}
1209
1210void GAddress_SetFamily(GAddress *address, GAddressType type)
1211{
1212 assert(address != NULL);
1213
1214 address->m_family = type;
1215}
1216
1217GAddressType GAddress_GetFamily(GAddress *address)
1218{
1219 assert(address != NULL);
1220
1221 return address->m_family;
1222}
1223
1224GSocketError _GAddress_translate_from(GAddress *address,
1225 struct sockaddr *addr, int len)
1226{
1227 address->m_realfamily = addr->sa_family;
1228 switch (addr->sa_family)
1229 {
1230 case AF_INET:
1231 address->m_family = GSOCK_INET;
1232 break;
1233 case AF_UNIX:
1234 address->m_family = GSOCK_UNIX;
1235 break;
1236#ifdef AF_INET6
1237 case AF_INET6:
1238 address->m_family = GSOCK_INET6;
1239 break;
1240#endif
1241 default:
1242 {
1243 address->m_error = GSOCK_INVOP;
1244 return GSOCK_INVOP;
1245 }
1246 }
1247
1248 if (address->m_addr)
1249 free(address->m_addr);
1250
1251 address->m_len = len;
1252 address->m_addr = (struct sockaddr *) malloc(len);
1253
1254 if (address->m_addr == NULL)
1255 {
1256 address->m_error = GSOCK_MEMERR;
1257 return GSOCK_MEMERR;
1258 }
1259 memcpy(address->m_addr, addr, len);
1260
1261 return GSOCK_NOERROR;
1262}
1263
1264GSocketError _GAddress_translate_to(GAddress *address,
1265 struct sockaddr **addr, int *len)
1266{
1267 if (!address->m_addr)
1268 {
1269 address->m_error = GSOCK_INVADDR;
1270 return GSOCK_INVADDR;
1271 }
1272
1273 *len = address->m_len;
1274 *addr = (struct sockaddr *) malloc(address->m_len);
1275 if (*addr == NULL)
1276 {
1277 address->m_error = GSOCK_MEMERR;
1278 return GSOCK_MEMERR;
1279 }
1280
1281 memcpy(*addr, address->m_addr, address->m_len);
1282 return GSOCK_NOERROR;
1283}
1284
1285/*
1286 * -------------------------------------------------------------------------
1287 * Internet address family
1288 * -------------------------------------------------------------------------
1289 */
1290
1291GSocketError _GAddress_Init_INET(GAddress *address)
1292{
9bf10d6b 1293 address->m_len = sizeof(struct sockaddr_in);
9bbd7ba3
GRG
1294 address->m_addr = (struct sockaddr *) malloc(address->m_len);
1295 if (address->m_addr == NULL)
1296 {
1297 address->m_error = GSOCK_MEMERR;
1298 return GSOCK_MEMERR;
1299 }
1300
9bbd7ba3
GRG
1301 address->m_family = GSOCK_INET;
1302 address->m_realfamily = PF_INET;
1303 ((struct sockaddr_in *)address->m_addr)->sin_family = AF_INET;
9bf10d6b 1304 ((struct sockaddr_in *)address->m_addr)->sin_addr.s_addr = INADDR_ANY;
9bbd7ba3
GRG
1305
1306 return GSOCK_NOERROR;
1307}
1308
1309GSocketError GAddress_INET_SetHostName(GAddress *address, const char *hostname)
1310{
1311 struct hostent *he;
1312 struct in_addr *addr;
1313
1314 assert(address != NULL);
1315
032d5581 1316 CHECK_ADDRESS(address, INET);
9bbd7ba3
GRG
1317
1318 addr = &(((struct sockaddr_in *)address->m_addr)->sin_addr);
1319
1320 addr->s_addr = inet_addr(hostname);
b661e675 1321
9bbd7ba3
GRG
1322 /* If it is a numeric host name, convert it now */
1323 if (addr->s_addr == INADDR_NONE)
1324 {
1325 struct in_addr *array_addr;
1326
1327 /* It is a real name, we solve it */
1328 if ((he = gethostbyname(hostname)) == NULL)
1329 {
9bf10d6b 1330 /* addr->s_addr = INADDR_NONE just done by inet_addr() above */
9bbd7ba3
GRG
1331 address->m_error = GSOCK_NOHOST;
1332 return GSOCK_NOHOST;
1333 }
1334 array_addr = (struct in_addr *) *(he->h_addr_list);
1335 addr->s_addr = array_addr[0].s_addr;
1336 }
1337 return GSOCK_NOERROR;
1338}
1339
9bf10d6b
GRG
1340GSocketError GAddress_INET_SetAnyAddress(GAddress *address)
1341{
1342 return GAddress_INET_SetHostAddress(address, INADDR_ANY);
1343}
1344
9bbd7ba3
GRG
1345GSocketError GAddress_INET_SetHostAddress(GAddress *address,
1346 unsigned long hostaddr)
1347{
1348 struct in_addr *addr;
1349
1350 assert(address != NULL);
1351
032d5581 1352 CHECK_ADDRESS(address, INET);
9bbd7ba3
GRG
1353
1354 addr = &(((struct sockaddr_in *)address->m_addr)->sin_addr);
1355 addr->s_addr = hostaddr;
1356
1357 return GSOCK_NOERROR;
1358}
1359
1360GSocketError GAddress_INET_SetPortName(GAddress *address, const char *port,
1361 const char *protocol)
1362{
1363 struct servent *se;
1364 struct sockaddr_in *addr;
1365
1366 assert(address != NULL);
032d5581 1367 CHECK_ADDRESS(address, INET);
9bbd7ba3
GRG
1368
1369 if (!port)
1370 {
1371 address->m_error = GSOCK_INVPORT;
9bf10d6b 1372 return GSOCK_INVPORT;
9bbd7ba3 1373 }
b661e675 1374
9bbd7ba3
GRG
1375 se = getservbyname(port, protocol);
1376 if (!se)
1377 {
1378 if (isdigit(port[0]))
1379 {
1380 int port_int;
1381
1382 port_int = atoi(port);
1383 addr = (struct sockaddr_in *)address->m_addr;
aa3981f2 1384 addr->sin_port = htons((u_short) port_int);
9bbd7ba3
GRG
1385 return GSOCK_NOERROR;
1386 }
1387
1388 address->m_error = GSOCK_INVPORT;
1389 return GSOCK_INVPORT;
1390 }
1391
1392 addr = (struct sockaddr_in *)address->m_addr;
1393 addr->sin_port = se->s_port;
1394
1395 return GSOCK_NOERROR;
1396}
1397
1398GSocketError GAddress_INET_SetPort(GAddress *address, unsigned short port)
1399{
1400 struct sockaddr_in *addr;
1401
1402 assert(address != NULL);
032d5581 1403 CHECK_ADDRESS(address, INET);
b661e675 1404
9bbd7ba3
GRG
1405 addr = (struct sockaddr_in *)address->m_addr;
1406 addr->sin_port = htons(port);
1407
1408 return GSOCK_NOERROR;
1409}
1410
1411GSocketError GAddress_INET_GetHostName(GAddress *address, char *hostname, size_t sbuf)
1412{
1413 struct hostent *he;
1414 char *addr_buf;
1415 struct sockaddr_in *addr;
1416
b661e675 1417 assert(address != NULL);
032d5581 1418 CHECK_ADDRESS(address, INET);
9bbd7ba3
GRG
1419
1420 addr = (struct sockaddr_in *)address->m_addr;
1421 addr_buf = (char *)&(addr->sin_addr);
1422
1423 he = gethostbyaddr(addr_buf, sizeof(addr->sin_addr), AF_INET);
1424 if (he == NULL)
1425 {
1426 address->m_error = GSOCK_NOHOST;
1427 return GSOCK_NOHOST;
1428 }
1429
1430 strncpy(hostname, he->h_name, sbuf);
1431
1432 return GSOCK_NOERROR;
1433}
1434
1435unsigned long GAddress_INET_GetHostAddress(GAddress *address)
1436{
1437 struct sockaddr_in *addr;
1438
b661e675 1439 assert(address != NULL);
032d5581 1440 CHECK_ADDRESS_RETVAL(address, INET, 0);
9bbd7ba3
GRG
1441
1442 addr = (struct sockaddr_in *)address->m_addr;
1443
1444 return addr->sin_addr.s_addr;
1445}
1446
1447unsigned short GAddress_INET_GetPort(GAddress *address)
1448{
1449 struct sockaddr_in *addr;
1450
b661e675 1451 assert(address != NULL);
032d5581 1452 CHECK_ADDRESS_RETVAL(address, INET, 0);
9bbd7ba3
GRG
1453
1454 addr = (struct sockaddr_in *)address->m_addr;
1455 return ntohs(addr->sin_port);
1456}
1457
1458/*
1459 * -------------------------------------------------------------------------
1460 * Unix address family
1461 * -------------------------------------------------------------------------
1462 */
1463
1464GSocketError _GAddress_Init_UNIX(GAddress *address)
1465{
1466 assert (address != NULL);
1467 address->m_error = GSOCK_INVADDR;
1468 return GSOCK_INVADDR;
1469}
1470
1471GSocketError GAddress_UNIX_SetPath(GAddress *address, const char *path)
1472{
196be0f1
JS
1473#if defined(__BORLANDC__)
1474 /* prevents unused variable message in Borland */
1475 (void)path;
1476#endif
9bbd7ba3
GRG
1477 assert (address != NULL);
1478 address->m_error = GSOCK_INVADDR;
1479 return GSOCK_INVADDR;
1480}
1481
1482GSocketError GAddress_UNIX_GetPath(GAddress *address, char *path, size_t sbuf)
1483{
196be0f1
JS
1484#if defined(__BORLANDC__)
1485 /* prevents unused variable message in Borland */
1486 (void)path;
1487 (void)sbuf;
1488#endif
9bbd7ba3
GRG
1489 assert (address != NULL);
1490 address->m_error = GSOCK_INVADDR;
1491 return GSOCK_INVADDR;
1492}
1493
a497618a 1494#else /* !wxUSE_SOCKETS */
9bbd7ba3 1495
33ac7e6f 1496/*
9bf10d6b 1497 * Translation unit shouldn't be empty, so include this typedef to make the
a497618a
VZ
1498 * compiler (VC++ 6.0, for example) happy
1499 */
3a922bb4 1500typedef void (*wxDummy)();
9bbd7ba3 1501
a497618a 1502#endif /* wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__) */
007c77ab 1503