]> git.saurik.com Git - wxWidgets.git/blame - src/unix/gsocket.cpp
Honous initial position for wxSpinCtrl.
[wxWidgets.git] / src / unix / gsocket.cpp
CommitLineData
97e6ee04 1/* -------------------------------------------------------------------------
99d80019
JS
2 * Project: GSocket (Generic Socket) for WX
3 * Name: gsocket.c
4 * Copyright: (c) Guilhem Lavaux
5 * Licence: wxWindows Licence
6 * Authors: David Elliott (C++ conversion, maintainer)
7 * Guilhem Lavaux,
8 * Guillermo Rodriguez Garcia <guille@iies.es>
9 * Purpose: GSocket main Unix and OS/2 file
10 * Licence: The wxWindows licence
11 * CVSID: $Id$
97e6ee04
DE
12 * -------------------------------------------------------------------------
13 */
14
ba2a81d7
DE
15/*
16 * PLEASE don't put C++ comments here - this is a C source file.
17 */
18
7e1e6965
WS
19#if defined(__WATCOMC__)
20#include "wx/wxprec.h"
21#include <errno.h>
22#include <nerrno.h>
23#endif
24
ba2a81d7 25#ifndef __GSOCKET_STANDALONE__
0beb8735 26#include "wx/defs.h"
ba2a81d7 27#endif
97e6ee04
DE
28
29#if defined(__VISAGECPP__)
97e6ee04
DE
30#define BSD_SELECT /* use Berkley Sockets select */
31#endif
32
33#if wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__)
34
35#include <assert.h>
36#include <sys/types.h>
37#ifdef __VISAGECPP__
38#include <string.h>
39#include <sys/time.h>
40#include <types.h>
41#include <netinet/in.h>
42#endif
43#include <netdb.h>
44#include <sys/ioctl.h>
45
46#ifdef __VMS__
47#include <socket.h>
48struct sockaddr_un
49{
50 u_char sun_len; /* sockaddr len including null */
51 u_char sun_family; /* AF_UNIX */
52 char sun_path[108]; /* path name (gag) */
53};
54#else
55#include <sys/socket.h>
56#include <sys/un.h>
57#endif
58
59#ifndef __VISAGECPP__
60#include <sys/time.h>
61#include <netinet/in.h>
62#include <arpa/inet.h>
63#include <errno.h>
64#include <string.h>
65#include <unistd.h>
66#else
67#include <nerrno.h>
68# if __IBMCPP__ < 400
69#include <machine/endian.h>
70#include <socket.h>
71#include <ioctl.h>
72#include <select.h>
73#include <unistd.h>
74
75#define EBADF SOCEBADF
76
77# ifdef min
78# undef min
79# endif
80# else
81#include <sys/socket.h>
82#include <sys/ioctl.h>
83#include <sys/select.h>
84
85#define close(a) soclose(a)
86#define select(a,b,c,d,e) bsdselect(a,b,c,d,e)
87int _System bsdselect(int,
88 struct fd_set *,
89 struct fd_set *,
90 struct fd_set *,
91 struct timeval *);
92int _System soclose(int);
93# endif
94#endif
ebdab982
SN
95#ifdef __EMX__
96#include <sys/select.h>
97#endif
98
97e6ee04
DE
99#include <stdio.h>
100#include <stdlib.h>
101#include <stddef.h>
102#include <ctype.h>
103#ifdef sun
104# include <sys/filio.h>
105#endif
106#ifdef sgi
107# include <bstring.h>
108#endif
d1f8e97b
SN
109#ifdef _AIX
110# include <strings.h>
111#endif
97e6ee04
DE
112#include <signal.h>
113
9e03e02d 114#ifndef WX_SOCKLEN_T
97e6ee04
DE
115
116#ifdef VMS
9e03e02d 117# define WX_SOCKLEN_T unsigned int
97e6ee04
DE
118#else
119# ifdef __GLIBC__
120# if __GLIBC__ == 2
9e03e02d 121# define WX_SOCKLEN_T socklen_t
97e6ee04 122# endif
fcbd7e5a 123# elif defined(__WXMAC__)
9e03e02d 124# define WX_SOCKLEN_T socklen_t
97e6ee04 125# else
9e03e02d 126# define WX_SOCKLEN_T int
97e6ee04
DE
127# endif
128#endif
129
130#endif /* SOCKLEN_T */
131
ddc1a35f 132#ifndef SOCKOPTLEN_T
9e03e02d 133#define SOCKOPTLEN_T WX_SOCKLEN_T
ddc1a35f
DE
134#endif
135
97e6ee04
DE
136/*
137 * MSW defines this, Unices don't.
138 */
139#ifndef INVALID_SOCKET
140#define INVALID_SOCKET -1
141#endif
142
143/* UnixWare reportedly needs this for FIONBIO definition */
144#ifdef __UNIXWARE__
145#include <sys/filio.h>
146#endif
147
148/*
149 * INADDR_BROADCAST is identical to INADDR_NONE which is not defined
150 * on all systems. INADDR_BROADCAST should be fine to indicate an error.
151 */
152#ifndef INADDR_NONE
153#define INADDR_NONE INADDR_BROADCAST
154#endif
155
7e1e6965 156#if defined(__VISAGECPP__) || defined(__WATCOMC__)
97e6ee04 157
7e1e6965
WS
158 #define MASK_SIGNAL() {
159 #define UNMASK_SIGNAL() }
160
161#else
162
163 #define MASK_SIGNAL() \
164 { \
165 void (*old_handler)(int); \
166 \
167 old_handler = signal(SIGPIPE, SIG_IGN);
168
169 #define UNMASK_SIGNAL() \
170 signal(SIGPIPE, old_handler); \
171 }
172
173#endif
97e6ee04 174
e400d27d
KH
175/* If a SIGPIPE is issued by a socket call on a remotely closed socket,
176 the program will "crash" unless it explicitly handles the SIGPIPE.
177 By using MSG_NOSIGNAL, the SIGPIPE is suppressed. Later, we will
178 use SO_NOSIGPIPE (if available), the BSD equivalent. */
bb154f79
KH
179#ifdef MSG_NOSIGNAL
180# define GSOCKET_MSG_NOSIGNAL MSG_NOSIGNAL
181#else /* MSG_NOSIGNAL not available (FreeBSD including OS X) */
182# define GSOCKET_MSG_NOSIGNAL 0
183#endif /* MSG_NOSIGNAL */
97e6ee04
DE
184
185#ifndef __GSOCKET_STANDALONE__
186# include "wx/unix/gsockunx.h"
187# include "wx/gsocket.h"
188#else
189# include "gsockunx.h"
190# include "gsocket.h"
5fb9aa56
WS
191# ifndef WXUNUSED
192# define WXUNUSED(x)
193# endif
97e6ee04
DE
194#endif /* __GSOCKET_STANDALONE__ */
195
196/* debugging helpers */
197#ifdef __GSOCKET_DEBUG__
198# define GSocket_Debug(args) printf args
199#else
200# define GSocket_Debug(args)
201#endif /* __GSOCKET_DEBUG__ */
202
ba2a81d7
DE
203/* Table of GUI-related functions. We must call them indirectly because
204 * of wxBase and GUI separation: */
444cb1fd 205
3e1400ac 206static GSocketGUIFunctionsTable *gs_gui_functions;
b082b524 207
ba2a81d7 208class GSocketGUIFunctionsTableNull: public GSocketGUIFunctionsTable
444cb1fd 209{
ba2a81d7
DE
210public:
211 virtual bool OnInit();
212 virtual void OnExit();
213 virtual bool CanUseEventLoop();
214 virtual bool Init_Socket(GSocket *socket);
215 virtual void Destroy_Socket(GSocket *socket);
216 virtual void Install_Callback(GSocket *socket, GSocketEvent event);
ba2a81d7
DE
217 virtual void Uninstall_Callback(GSocket *socket, GSocketEvent event);
218 virtual void Enable_Events(GSocket *socket);
219 virtual void Disable_Events(GSocket *socket);
220};
444cb1fd 221
ba2a81d7
DE
222bool GSocketGUIFunctionsTableNull::OnInit()
223{ return true; }
224void GSocketGUIFunctionsTableNull::OnExit()
225{}
226bool GSocketGUIFunctionsTableNull::CanUseEventLoop()
227{ return false; }
c40158e4 228bool GSocketGUIFunctionsTableNull::Init_Socket(GSocket *WXUNUSED(socket))
ba2a81d7 229{ return true; }
c40158e4 230void GSocketGUIFunctionsTableNull::Destroy_Socket(GSocket *WXUNUSED(socket))
ba2a81d7 231{}
c40158e4 232void GSocketGUIFunctionsTableNull::Install_Callback(GSocket *WXUNUSED(socket), GSocketEvent WXUNUSED(event))
ba2a81d7 233{}
c40158e4 234void GSocketGUIFunctionsTableNull::Uninstall_Callback(GSocket *WXUNUSED(socket), GSocketEvent WXUNUSED(event))
ba2a81d7 235{}
c40158e4 236void GSocketGUIFunctionsTableNull::Enable_Events(GSocket *WXUNUSED(socket))
ba2a81d7 237{}
c40158e4 238void GSocketGUIFunctionsTableNull::Disable_Events(GSocket *WXUNUSED(socket))
ba2a81d7
DE
239{}
240/* Global initialisers */
444cb1fd 241
3e1400ac 242void GSocket_SetGUIFunctions(GSocketGUIFunctionsTable *guifunc)
444cb1fd 243{
ba2a81d7 244 gs_gui_functions = guifunc;
444cb1fd
DE
245}
246
97e6ee04
DE
247int GSocket_Init(void)
248{
ba2a81d7
DE
249 if (!gs_gui_functions)
250 {
3e1400ac 251 static GSocketGUIFunctionsTableNull table;
ba2a81d7
DE
252 gs_gui_functions = &table;
253 }
254 if ( !gs_gui_functions->OnInit() )
255 return 0;
256 return 1;
97e6ee04
DE
257}
258
259void GSocket_Cleanup(void)
260{
ba2a81d7
DE
261 if (gs_gui_functions)
262 {
263 gs_gui_functions->OnExit();
264 }
97e6ee04
DE
265}
266
ba2a81d7
DE
267/* Constructors / Destructors for GSocket */
268
269GSocket::GSocket()
97e6ee04 270{
09e6e5ec 271 int i;
97e6ee04 272
09e6e5ec 273 m_fd = INVALID_SOCKET;
97e6ee04
DE
274 for (i=0;i<GSOCK_MAX_EVENT;i++)
275 {
09e6e5ec 276 m_cbacks[i] = NULL;
97e6ee04 277 }
09e6e5ec
DE
278 m_detected = 0;
279 m_local = NULL;
280 m_peer = NULL;
281 m_error = GSOCK_NOERROR;
948c96ef
DE
282 m_server = false;
283 m_stream = true;
09e6e5ec 284 m_gui_dependent = NULL;
948c96ef 285 m_non_blocking = false;
1eef64d8 286 m_reusable = false;
09e6e5ec 287 m_timeout = 10*60*1000;
97e6ee04 288 /* 10 minutes * 60 sec * 1000 millisec */
948c96ef 289 m_establishing = false;
97e6ee04 290
ba2a81d7
DE
291 assert(gs_gui_functions);
292 /* Per-socket GUI-specific initialization */
293 m_ok = gs_gui_functions->Init_Socket(this);
97e6ee04
DE
294}
295
ba2a81d7 296void GSocket::Close()
97e6ee04 297{
ba2a81d7
DE
298 gs_gui_functions->Disable_Events(this);
299 /* gsockosx.c calls CFSocketInvalidate which closes the socket for us */
97e6ee04 300#if !(defined(__DARWIN__) && (defined(__WXMAC__) || defined(__WXCOCOA__)))
09e6e5ec 301 close(m_fd);
97e6ee04 302#endif
09e6e5ec 303 m_fd = INVALID_SOCKET;
97e6ee04
DE
304}
305
ba2a81d7 306GSocket::~GSocket()
97e6ee04 307{
ba2a81d7
DE
308 assert(this);
309
310 /* Check that the socket is really shutdowned */
311 if (m_fd != INVALID_SOCKET)
312 Shutdown();
313
314 /* Per-socket GUI-specific cleanup */
315 gs_gui_functions->Destroy_Socket(this);
316
97e6ee04 317 /* Destroy private addresses */
09e6e5ec
DE
318 if (m_local)
319 GAddress_destroy(m_local);
97e6ee04 320
09e6e5ec
DE
321 if (m_peer)
322 GAddress_destroy(m_peer);
97e6ee04
DE
323}
324
325/* GSocket_Shutdown:
326 * Disallow further read/write operations on this socket, close
327 * the fd and disable all callbacks.
328 */
ba2a81d7 329void GSocket::Shutdown()
97e6ee04
DE
330{
331 int evt;
332
09e6e5ec 333 assert(this);
97e6ee04
DE
334
335 /* If socket has been created, shutdown it */
09e6e5ec 336 if (m_fd != INVALID_SOCKET)
97e6ee04 337 {
09e6e5ec
DE
338 shutdown(m_fd, 2);
339 Close();
97e6ee04
DE
340 }
341
342 /* Disable GUI callbacks */
343 for (evt = 0; evt < GSOCK_MAX_EVENT; evt++)
09e6e5ec 344 m_cbacks[evt] = NULL;
97e6ee04 345
09e6e5ec 346 m_detected = GSOCK_LOST_FLAG;
97e6ee04
DE
347}
348
349/* Address handling */
350
351/* GSocket_SetLocal:
352 * GSocket_GetLocal:
353 * GSocket_SetPeer:
354 * GSocket_GetPeer:
355 * Set or get the local or peer address for this socket. The 'set'
356 * functions return GSOCK_NOERROR on success, an error code otherwise.
357 * The 'get' functions return a pointer to a GAddress object on success,
358 * or NULL otherwise, in which case they set the error code of the
359 * corresponding GSocket.
360 *
361 * Error codes:
362 * GSOCK_INVSOCK - the socket is not valid.
363 * GSOCK_INVADDR - the address is not valid.
364 */
ba2a81d7 365GSocketError GSocket::SetLocal(GAddress *address)
97e6ee04 366{
09e6e5ec 367 assert(this);
97e6ee04
DE
368
369 /* the socket must be initialized, or it must be a server */
09e6e5ec 370 if ((m_fd != INVALID_SOCKET && !m_server))
97e6ee04 371 {
09e6e5ec 372 m_error = GSOCK_INVSOCK;
97e6ee04
DE
373 return GSOCK_INVSOCK;
374 }
375
376 /* check address */
377 if (address == NULL || address->m_family == GSOCK_NOFAMILY)
378 {
09e6e5ec 379 m_error = GSOCK_INVADDR;
97e6ee04
DE
380 return GSOCK_INVADDR;
381 }
382
09e6e5ec
DE
383 if (m_local)
384 GAddress_destroy(m_local);
97e6ee04 385
09e6e5ec 386 m_local = GAddress_copy(address);
97e6ee04
DE
387
388 return GSOCK_NOERROR;
389}
390
ba2a81d7 391GSocketError GSocket::SetPeer(GAddress *address)
97e6ee04 392{
09e6e5ec 393 assert(this);
97e6ee04
DE
394
395 /* check address */
396 if (address == NULL || address->m_family == GSOCK_NOFAMILY)
397 {
09e6e5ec 398 m_error = GSOCK_INVADDR;
97e6ee04
DE
399 return GSOCK_INVADDR;
400 }
401
09e6e5ec
DE
402 if (m_peer)
403 GAddress_destroy(m_peer);
97e6ee04 404
09e6e5ec 405 m_peer = GAddress_copy(address);
97e6ee04
DE
406
407 return GSOCK_NOERROR;
408}
409
ba2a81d7 410GAddress *GSocket::GetLocal()
97e6ee04
DE
411{
412 GAddress *address;
413 struct sockaddr addr;
9e03e02d 414 WX_SOCKLEN_T size = sizeof(addr);
97e6ee04
DE
415 GSocketError err;
416
09e6e5ec 417 assert(this);
97e6ee04
DE
418
419 /* try to get it from the m_local var first */
09e6e5ec
DE
420 if (m_local)
421 return GAddress_copy(m_local);
97e6ee04
DE
422
423 /* else, if the socket is initialized, try getsockname */
09e6e5ec 424 if (m_fd == INVALID_SOCKET)
97e6ee04 425 {
09e6e5ec 426 m_error = GSOCK_INVSOCK;
97e6ee04
DE
427 return NULL;
428 }
429
9e03e02d 430 if (getsockname(m_fd, &addr, (WX_SOCKLEN_T *) &size) < 0)
97e6ee04 431 {
09e6e5ec 432 m_error = GSOCK_IOERR;
97e6ee04
DE
433 return NULL;
434 }
435
436 /* got a valid address from getsockname, create a GAddress object */
437 address = GAddress_new();
438 if (address == NULL)
439 {
09e6e5ec 440 m_error = GSOCK_MEMERR;
97e6ee04
DE
441 return NULL;
442 }
443
444 err = _GAddress_translate_from(address, &addr, size);
445 if (err != GSOCK_NOERROR)
446 {
447 GAddress_destroy(address);
09e6e5ec 448 m_error = err;
97e6ee04
DE
449 return NULL;
450 }
451
452 return address;
453}
454
ba2a81d7 455GAddress *GSocket::GetPeer()
97e6ee04 456{
09e6e5ec 457 assert(this);
97e6ee04
DE
458
459 /* try to get it from the m_peer var */
09e6e5ec
DE
460 if (m_peer)
461 return GAddress_copy(m_peer);
97e6ee04
DE
462
463 return NULL;
464}
465
466/* Server specific parts */
467
468/* GSocket_SetServer:
469 * Sets up this socket as a server. The local address must have been
470 * set with GSocket_SetLocal() before GSocket_SetServer() is called.
471 * Returns GSOCK_NOERROR on success, one of the following otherwise:
b082b524 472 *
97e6ee04
DE
473 * Error codes:
474 * GSOCK_INVSOCK - the socket is in use.
475 * GSOCK_INVADDR - the local address has not been set.
b082b524 476 * GSOCK_IOERR - low-level error.
97e6ee04 477 */
ba2a81d7 478GSocketError GSocket::SetServer()
97e6ee04
DE
479{
480 int arg = 1;
481
09e6e5ec 482 assert(this);
97e6ee04
DE
483
484 /* must not be in use */
09e6e5ec 485 if (m_fd != INVALID_SOCKET)
97e6ee04 486 {
09e6e5ec 487 m_error = GSOCK_INVSOCK;
97e6ee04
DE
488 return GSOCK_INVSOCK;
489 }
490
491 /* the local addr must have been set */
09e6e5ec 492 if (!m_local)
97e6ee04 493 {
09e6e5ec 494 m_error = GSOCK_INVADDR;
97e6ee04
DE
495 return GSOCK_INVADDR;
496 }
497
498 /* Initialize all fields */
948c96ef
DE
499 m_stream = true;
500 m_server = true;
97e6ee04
DE
501
502 /* Create the socket */
09e6e5ec 503 m_fd = socket(m_local->m_realfamily, SOCK_STREAM, 0);
97e6ee04 504
09e6e5ec 505 if (m_fd == INVALID_SOCKET)
97e6ee04 506 {
09e6e5ec 507 m_error = GSOCK_IOERR;
97e6ee04
DE
508 return GSOCK_IOERR;
509 }
bb154f79
KH
510
511 /* FreeBSD variants can't use MSG_NOSIGNAL, and instead use a socket option */
512#ifdef SO_NOSIGPIPE
513 setsockopt(m_fd, SOL_SOCKET, SO_NOSIGPIPE, (const char*)&arg, sizeof(u_long));
514#endif
515
09e6e5ec 516 ioctl(m_fd, FIONBIO, &arg);
ba2a81d7 517 gs_gui_functions->Enable_Events(this);
97e6ee04
DE
518
519 /* allow a socket to re-bind if the socket is in the TIME_WAIT
520 state after being previously closed.
521 */
ba2a81d7 522 if (m_reusable)
b082b524 523 setsockopt(m_fd, SOL_SOCKET, SO_REUSEADDR, (const char*)&arg, sizeof(u_long));
97e6ee04
DE
524
525 /* Bind to the local address,
526 * retrieve the actual address bound,
527 * and listen up to 5 connections.
528 */
09e6e5ec
DE
529 if ((bind(m_fd, m_local->m_addr, m_local->m_len) != 0) ||
530 (getsockname(m_fd,
531 m_local->m_addr,
9e03e02d 532 (WX_SOCKLEN_T *) &m_local->m_len) != 0) ||
09e6e5ec 533 (listen(m_fd, 5) != 0))
97e6ee04 534 {
09e6e5ec
DE
535 Close();
536 m_error = GSOCK_IOERR;
97e6ee04
DE
537 return GSOCK_IOERR;
538 }
539
540 return GSOCK_NOERROR;
541}
542
543/* GSocket_WaitConnection:
544 * Waits for an incoming client connection. Returns a pointer to
545 * a GSocket object, or NULL if there was an error, in which case
546 * the last error field will be updated for the calling GSocket.
547 *
548 * Error codes (set in the calling GSocket)
549 * GSOCK_INVSOCK - the socket is not valid or not a server.
550 * GSOCK_TIMEDOUT - timeout, no incoming connections.
551 * GSOCK_WOULDBLOCK - the call would block and the socket is nonblocking.
552 * GSOCK_MEMERR - couldn't allocate memory.
b082b524 553 * GSOCK_IOERR - low-level error.
97e6ee04 554 */
ba2a81d7 555GSocket *GSocket::WaitConnection()
97e6ee04
DE
556{
557 struct sockaddr from;
9e03e02d 558 WX_SOCKLEN_T fromlen = sizeof(from);
97e6ee04
DE
559 GSocket *connection;
560 GSocketError err;
561 int arg = 1;
562
09e6e5ec 563 assert(this);
97e6ee04 564
97e6ee04 565 /* If the socket has already been created, we exit immediately */
09e6e5ec 566 if (m_fd == INVALID_SOCKET || !m_server)
97e6ee04 567 {
09e6e5ec 568 m_error = GSOCK_INVSOCK;
97e6ee04
DE
569 return NULL;
570 }
571
572 /* Create a GSocket object for the new connection */
444cb1fd 573 connection = GSocket_new();
97e6ee04 574
444cb1fd 575 if (!connection)
97e6ee04 576 {
09e6e5ec 577 m_error = GSOCK_MEMERR;
97e6ee04
DE
578 return NULL;
579 }
580
581 /* Wait for a connection (with timeout) */
09e6e5ec 582 if (Input_Timeout() == GSOCK_TIMEDOUT)
97e6ee04 583 {
85431efa 584 delete connection;
09e6e5ec 585 /* m_error set by _GSocket_Input_Timeout */
97e6ee04
DE
586 return NULL;
587 }
588
9e03e02d 589 connection->m_fd = accept(m_fd, &from, (WX_SOCKLEN_T *) &fromlen);
97e6ee04 590
bb154f79
KH
591 /* Reenable CONNECTION events */
592 Enable(GSOCK_CONNECTION);
bb154f79 593
97e6ee04
DE
594 if (connection->m_fd == INVALID_SOCKET)
595 {
596 if (errno == EWOULDBLOCK)
09e6e5ec 597 m_error = GSOCK_WOULDBLOCK;
97e6ee04 598 else
09e6e5ec 599 m_error = GSOCK_IOERR;
97e6ee04 600
85431efa 601 delete connection;
97e6ee04
DE
602 return NULL;
603 }
604
605 /* Initialize all fields */
948c96ef
DE
606 connection->m_server = false;
607 connection->m_stream = true;
97e6ee04
DE
608
609 /* Setup the peer address field */
610 connection->m_peer = GAddress_new();
611 if (!connection->m_peer)
612 {
85431efa 613 delete connection;
09e6e5ec 614 m_error = GSOCK_MEMERR;
97e6ee04
DE
615 return NULL;
616 }
617 err = _GAddress_translate_from(connection->m_peer, &from, fromlen);
618 if (err != GSOCK_NOERROR)
619 {
85431efa 620 delete connection;
09e6e5ec 621 m_error = err;
97e6ee04
DE
622 return NULL;
623 }
624#if defined(__EMX__) || defined(__VISAGECPP__)
625 ioctl(connection->m_fd, FIONBIO, (char*)&arg, sizeof(arg));
626#else
627 ioctl(connection->m_fd, FIONBIO, &arg);
628#endif
ba2a81d7 629 gs_gui_functions->Enable_Events(connection);
97e6ee04
DE
630
631 return connection;
632}
633
948c96ef 634bool GSocket::SetReusable()
b082b524
DE
635{
636 /* socket must not be null, and must not be in use/already bound */
ba2a81d7 637 if (this && m_fd == INVALID_SOCKET) {
948c96ef
DE
638 m_reusable = true;
639 return true;
b082b524 640 }
948c96ef 641 return false;
b082b524
DE
642}
643
97e6ee04
DE
644/* Client specific parts */
645
646/* GSocket_Connect:
647 * For stream (connection oriented) sockets, GSocket_Connect() tries
648 * to establish a client connection to a server using the peer address
649 * as established with GSocket_SetPeer(). Returns GSOCK_NOERROR if the
d6922577 650 * connection has been successfully established, or one of the error
97e6ee04
DE
651 * codes listed below. Note that for nonblocking sockets, a return
652 * value of GSOCK_WOULDBLOCK doesn't mean a failure. The connection
653 * request can be completed later; you should use GSocket_Select()
654 * to poll for GSOCK_CONNECTION | GSOCK_LOST, or wait for the
655 * corresponding asynchronous events.
656 *
657 * For datagram (non connection oriented) sockets, GSocket_Connect()
658 * just sets the peer address established with GSocket_SetPeer() as
659 * default destination.
660 *
661 * Error codes:
662 * GSOCK_INVSOCK - the socket is in use or not valid.
663 * GSOCK_INVADDR - the peer address has not been established.
664 * GSOCK_TIMEDOUT - timeout, the connection failed.
665 * GSOCK_WOULDBLOCK - connection in progress (nonblocking sockets only)
666 * GSOCK_MEMERR - couldn't allocate memory.
b082b524 667 * GSOCK_IOERR - low-level error.
97e6ee04 668 */
ba2a81d7 669GSocketError GSocket::Connect(GSocketStream stream)
97e6ee04
DE
670{
671 int err, ret;
672 int arg = 1;
673
09e6e5ec 674 assert(this);
97e6ee04
DE
675
676 /* Enable CONNECTION events (needed for nonblocking connections) */
09e6e5ec 677 Enable(GSOCK_CONNECTION);
97e6ee04 678
09e6e5ec 679 if (m_fd != INVALID_SOCKET)
97e6ee04 680 {
09e6e5ec 681 m_error = GSOCK_INVSOCK;
97e6ee04
DE
682 return GSOCK_INVSOCK;
683 }
684
09e6e5ec 685 if (!m_peer)
97e6ee04 686 {
09e6e5ec 687 m_error = GSOCK_INVADDR;
97e6ee04
DE
688 return GSOCK_INVADDR;
689 }
690
691 /* Streamed or dgram socket? */
09e6e5ec 692 m_stream = (stream == GSOCK_STREAMED);
948c96ef
DE
693 m_server = false;
694 m_establishing = false;
97e6ee04
DE
695
696 /* Create the socket */
09e6e5ec
DE
697 m_fd = socket(m_peer->m_realfamily,
698 m_stream? SOCK_STREAM : SOCK_DGRAM, 0);
97e6ee04 699
09e6e5ec 700 if (m_fd == INVALID_SOCKET)
97e6ee04 701 {
09e6e5ec 702 m_error = GSOCK_IOERR;
97e6ee04
DE
703 return GSOCK_IOERR;
704 }
bb154f79
KH
705
706 /* FreeBSD variants can't use MSG_NOSIGNAL, and instead use a socket option */
707#ifdef SO_NOSIGPIPE
708 setsockopt(m_fd, SOL_SOCKET, SO_NOSIGPIPE, (const char*)&arg, sizeof(u_long));
709#endif
710
97e6ee04 711#if defined(__EMX__) || defined(__VISAGECPP__)
09e6e5ec 712 ioctl(m_fd, FIONBIO, (char*)&arg, sizeof(arg));
97e6ee04 713#else
09e6e5ec 714 ioctl(m_fd, FIONBIO, &arg);
97e6ee04 715#endif
97e6ee04
DE
716
717 /* Connect it to the peer address, with a timeout (see below) */
09e6e5ec 718 ret = connect(m_fd, m_peer->m_addr, m_peer->m_len);
97e6ee04 719
e400d27d
KH
720 /* We only call Enable_Events if we know e aren't shutting down the socket */
721
bb154f79
KH
722 if (m_non_blocking)
723 {
724 gs_gui_functions->Enable_Events(this);
725 }
726
97e6ee04
DE
727 if (ret == -1)
728 {
729 err = errno;
730
731 /* If connect failed with EINPROGRESS and the GSocket object
732 * is in blocking mode, we select() for the specified timeout
733 * checking for writability to see if the connection request
734 * completes.
735 */
09e6e5ec 736 if ((err == EINPROGRESS) && (!m_non_blocking))
97e6ee04 737 {
09e6e5ec 738 if (Output_Timeout() == GSOCK_TIMEDOUT)
97e6ee04 739 {
09e6e5ec
DE
740 Close();
741 /* m_error is set in _GSocket_Output_Timeout */
97e6ee04
DE
742 return GSOCK_TIMEDOUT;
743 }
744 else
745 {
746 int error;
ddc1a35f 747 SOCKOPTLEN_T len = sizeof(error);
97e6ee04 748
f71bb8ef 749 getsockopt(m_fd, SOL_SOCKET, SO_ERROR, (char*) &error, &len);
97e6ee04 750
bb154f79
KH
751 gs_gui_functions->Enable_Events(this);
752
97e6ee04
DE
753 if (!error)
754 return GSOCK_NOERROR;
755 }
756 }
757
758 /* If connect failed with EINPROGRESS and the GSocket object
759 * is set to nonblocking, we set m_error to GSOCK_WOULDBLOCK
760 * (and return GSOCK_WOULDBLOCK) but we don't close the socket;
761 * this way if the connection completes, a GSOCK_CONNECTION
762 * event will be generated, if enabled.
763 */
09e6e5ec 764 if ((err == EINPROGRESS) && (m_non_blocking))
97e6ee04 765 {
948c96ef 766 m_establishing = true;
09e6e5ec 767 m_error = GSOCK_WOULDBLOCK;
97e6ee04
DE
768 return GSOCK_WOULDBLOCK;
769 }
770
771 /* If connect failed with an error other than EINPROGRESS,
772 * then the call to GSocket_Connect has failed.
773 */
09e6e5ec
DE
774 Close();
775 m_error = GSOCK_IOERR;
97e6ee04
DE
776 return GSOCK_IOERR;
777 }
778
779 return GSOCK_NOERROR;
780}
781
782/* Datagram sockets */
783
784/* GSocket_SetNonOriented:
785 * Sets up this socket as a non-connection oriented (datagram) socket.
786 * Before using this function, the local address must have been set
787 * with GSocket_SetLocal(), or the call will fail. Returns GSOCK_NOERROR
788 * on success, or one of the following otherwise.
789 *
790 * Error codes:
791 * GSOCK_INVSOCK - the socket is in use.
792 * GSOCK_INVADDR - the local address has not been set.
793 * GSOCK_IOERR - low-level error.
794 */
ba2a81d7 795GSocketError GSocket::SetNonOriented()
97e6ee04
DE
796{
797 int arg = 1;
798
09e6e5ec 799 assert(this);
97e6ee04 800
09e6e5ec 801 if (m_fd != INVALID_SOCKET)
97e6ee04 802 {
09e6e5ec 803 m_error = GSOCK_INVSOCK;
97e6ee04
DE
804 return GSOCK_INVSOCK;
805 }
806
09e6e5ec 807 if (!m_local)
97e6ee04 808 {
09e6e5ec 809 m_error = GSOCK_INVADDR;
97e6ee04
DE
810 return GSOCK_INVADDR;
811 }
812
813 /* Initialize all fields */
948c96ef
DE
814 m_stream = false;
815 m_server = false;
97e6ee04
DE
816
817 /* Create the socket */
09e6e5ec 818 m_fd = socket(m_local->m_realfamily, SOCK_DGRAM, 0);
97e6ee04 819
09e6e5ec 820 if (m_fd == INVALID_SOCKET)
97e6ee04 821 {
09e6e5ec 822 m_error = GSOCK_IOERR;
97e6ee04
DE
823 return GSOCK_IOERR;
824 }
825#if defined(__EMX__) || defined(__VISAGECPP__)
09e6e5ec 826 ioctl(m_fd, FIONBIO, (char*)&arg, sizeof(arg));
97e6ee04 827#else
09e6e5ec 828 ioctl(m_fd, FIONBIO, &arg);
97e6ee04 829#endif
ba2a81d7 830 gs_gui_functions->Enable_Events(this);
97e6ee04
DE
831
832 /* Bind to the local address,
833 * and retrieve the actual address bound.
834 */
09e6e5ec
DE
835 if ((bind(m_fd, m_local->m_addr, m_local->m_len) != 0) ||
836 (getsockname(m_fd,
837 m_local->m_addr,
9e03e02d 838 (WX_SOCKLEN_T *) &m_local->m_len) != 0))
97e6ee04 839 {
09e6e5ec
DE
840 Close();
841 m_error = GSOCK_IOERR;
97e6ee04
DE
842 return GSOCK_IOERR;
843 }
844
845 return GSOCK_NOERROR;
846}
847
848/* Generic IO */
849
850/* Like recv(), send(), ... */
ba2a81d7 851int GSocket::Read(char *buffer, int size)
97e6ee04
DE
852{
853 int ret;
854
09e6e5ec 855 assert(this);
97e6ee04 856
09e6e5ec 857 if (m_fd == INVALID_SOCKET || m_server)
97e6ee04 858 {
09e6e5ec 859 m_error = GSOCK_INVSOCK;
97e6ee04
DE
860 return -1;
861 }
862
9d715960
DE
863 /* Disable events during query of socket status */
864 Disable(GSOCK_INPUT);
b082b524 865
97e6ee04 866 /* If the socket is blocking, wait for data (with a timeout) */
09e6e5ec 867 if (Input_Timeout() == GSOCK_TIMEDOUT)
9d715960
DE
868 /* We no longer return here immediately, otherwise socket events would not be re-enabled! */
869 ret = -1;
870 else {
871 /* Read the data */
872 if (m_stream)
873 ret = Recv_Stream(buffer, size);
874 else
875 ret = Recv_Dgram(buffer, size);
876 }
b082b524 877
97e6ee04
DE
878 if (ret == -1)
879 {
bb154f79 880 if ((errno == EWOULDBLOCK) || (errno == EAGAIN))
09e6e5ec 881 m_error = GSOCK_WOULDBLOCK;
97e6ee04 882 else
09e6e5ec 883 m_error = GSOCK_IOERR;
97e6ee04 884 }
b082b524 885
9d715960 886 /* Enable events again now that we are done processing */
09e6e5ec 887 Enable(GSOCK_INPUT);
97e6ee04
DE
888
889 return ret;
890}
891
ba2a81d7 892int GSocket::Write(const char *buffer, int size)
b082b524 893{
97e6ee04
DE
894 int ret;
895
09e6e5ec 896 assert(this);
b082b524 897
97e6ee04
DE
898 GSocket_Debug(( "GSocket_Write #1, size %d\n", size ));
899
09e6e5ec 900 if (m_fd == INVALID_SOCKET || m_server)
97e6ee04 901 {
09e6e5ec 902 m_error = GSOCK_INVSOCK;
97e6ee04
DE
903 return -1;
904 }
905
906 GSocket_Debug(( "GSocket_Write #2, size %d\n", size ));
907
908 /* If the socket is blocking, wait for writability (with a timeout) */
09e6e5ec 909 if (Output_Timeout() == GSOCK_TIMEDOUT)
97e6ee04
DE
910 return -1;
911
912 GSocket_Debug(( "GSocket_Write #3, size %d\n", size ));
913
914 /* Write the data */
09e6e5ec
DE
915 if (m_stream)
916 ret = Send_Stream(buffer, size);
97e6ee04 917 else
09e6e5ec 918 ret = Send_Dgram(buffer, size);
b082b524 919
97e6ee04
DE
920 GSocket_Debug(( "GSocket_Write #4, size %d\n", size ));
921
922 if (ret == -1)
923 {
7e1e6965 924 if ((errno == EWOULDBLOCK) || (errno == EAGAIN))
97e6ee04 925 {
09e6e5ec 926 m_error = GSOCK_WOULDBLOCK;
97e6ee04
DE
927 GSocket_Debug(( "GSocket_Write error WOULDBLOCK\n" ));
928 }
929 else
930 {
09e6e5ec 931 m_error = GSOCK_IOERR;
97e6ee04
DE
932 GSocket_Debug(( "GSocket_Write error IOERR\n" ));
933 }
934
935 /* Only reenable OUTPUT events after an error (just like WSAAsyncSelect
936 * in MSW). Once the first OUTPUT event is received, users can assume
937 * that the socket is writable until a read operation fails. Only then
938 * will further OUTPUT events be posted.
939 */
09e6e5ec 940 Enable(GSOCK_OUTPUT);
97e6ee04
DE
941 return -1;
942 }
b082b524 943
97e6ee04
DE
944 GSocket_Debug(( "GSocket_Write #5, size %d ret %d\n", size, ret ));
945
946 return ret;
947}
948
949/* GSocket_Select:
950 * Polls the socket to determine its status. This function will
951 * check for the events specified in the 'flags' parameter, and
952 * it will return a mask indicating which operations can be
953 * performed. This function won't block, regardless of the
954 * mode (blocking | nonblocking) of the socket.
955 */
ba2a81d7 956GSocketEventFlags GSocket::Select(GSocketEventFlags flags)
97e6ee04 957{
ba2a81d7 958 if (!gs_gui_functions->CanUseEventLoop())
97e6ee04
DE
959 {
960
961 GSocketEventFlags result = 0;
962 fd_set readfds;
963 fd_set writefds;
964 fd_set exceptfds;
965 struct timeval tv;
966
9d715960
DE
967 assert(this);
968
60b0bd1d
JS
969 if (m_fd == -1)
970 return (GSOCK_LOST_FLAG & flags);
971
97e6ee04 972 /* Do not use a static struct, Linux can garble it */
09e6e5ec 973 tv.tv_sec = m_timeout / 1000;
7488a05e 974 tv.tv_usec = (m_timeout % 1000) * 1000;
97e6ee04 975
97e6ee04
DE
976 FD_ZERO(&readfds);
977 FD_ZERO(&writefds);
978 FD_ZERO(&exceptfds);
09e6e5ec 979 FD_SET(m_fd, &readfds);
9d715960 980 if (flags & GSOCK_OUTPUT_FLAG || flags & GSOCK_CONNECTION_FLAG)
09e6e5ec
DE
981 FD_SET(m_fd, &writefds);
982 FD_SET(m_fd, &exceptfds);
97e6ee04
DE
983
984 /* Check 'sticky' CONNECTION flag first */
09e6e5ec 985 result |= (GSOCK_CONNECTION_FLAG & m_detected);
97e6ee04
DE
986
987 /* If we have already detected a LOST event, then don't try
988 * to do any further processing.
989 */
09e6e5ec 990 if ((m_detected & GSOCK_LOST_FLAG) != 0)
97e6ee04 991 {
948c96ef 992 m_establishing = false;
97e6ee04
DE
993
994 return (GSOCK_LOST_FLAG & flags);
995 }
996
997 /* Try select now */
09e6e5ec 998 if (select(m_fd + 1, &readfds, &writefds, &exceptfds, &tv) <= 0)
97e6ee04
DE
999 {
1000 /* What to do here? */
1001 return (result & flags);
1002 }
1003
1004 /* Check for readability */
09e6e5ec 1005 if (FD_ISSET(m_fd, &readfds))
97e6ee04
DE
1006 {
1007 char c;
1008
bb154f79
KH
1009 int num = recv(m_fd, &c, 1, MSG_PEEK | GSOCKET_MSG_NOSIGNAL);
1010
1011 if (num > 0)
97e6ee04
DE
1012 {
1013 result |= GSOCK_INPUT_FLAG;
1014 }
1015 else
1016 {
09e6e5ec 1017 if (m_server && m_stream)
97e6ee04
DE
1018 {
1019 result |= GSOCK_CONNECTION_FLAG;
09e6e5ec 1020 m_detected |= GSOCK_CONNECTION_FLAG;
97e6ee04 1021 }
bb154f79 1022 else if ((errno != EWOULDBLOCK) && (errno != EAGAIN) && (errno != EINTR))
97e6ee04 1023 {
09e6e5ec 1024 m_detected = GSOCK_LOST_FLAG;
948c96ef 1025 m_establishing = false;
b082b524 1026
97e6ee04
DE
1027 /* LOST event: Abort any further processing */
1028 return (GSOCK_LOST_FLAG & flags);
1029 }
1030 }
1031 }
1032
1033 /* Check for writability */
09e6e5ec 1034 if (FD_ISSET(m_fd, &writefds))
97e6ee04 1035 {
09e6e5ec 1036 if (m_establishing && !m_server)
97e6ee04
DE
1037 {
1038 int error;
ddc1a35f 1039 SOCKOPTLEN_T len = sizeof(error);
97e6ee04 1040
948c96ef 1041 m_establishing = false;
97e6ee04 1042
f71bb8ef 1043 getsockopt(m_fd, SOL_SOCKET, SO_ERROR, (char*)&error, &len);
97e6ee04
DE
1044
1045 if (error)
1046 {
09e6e5ec 1047 m_detected = GSOCK_LOST_FLAG;
97e6ee04
DE
1048
1049 /* LOST event: Abort any further processing */
1050 return (GSOCK_LOST_FLAG & flags);
1051 }
1052 else
1053 {
1054 result |= GSOCK_CONNECTION_FLAG;
09e6e5ec 1055 m_detected |= GSOCK_CONNECTION_FLAG;
97e6ee04
DE
1056 }
1057 }
1058 else
1059 {
1060 result |= GSOCK_OUTPUT_FLAG;
1061 }
1062 }
1063
1064 /* Check for exceptions and errors (is this useful in Unices?) */
09e6e5ec 1065 if (FD_ISSET(m_fd, &exceptfds))
97e6ee04 1066 {
948c96ef 1067 m_establishing = false;
09e6e5ec 1068 m_detected = GSOCK_LOST_FLAG;
97e6ee04
DE
1069
1070 /* LOST event: Abort any further processing */
1071 return (GSOCK_LOST_FLAG & flags);
1072 }
1073
1074 return (result & flags);
1075
1076 }
1077 else
1078 {
1079
09e6e5ec
DE
1080 assert(this);
1081 return flags & m_detected;
97e6ee04
DE
1082
1083 }
1084}
1085
1086/* Flags */
1087
1088/* GSocket_SetNonBlocking:
1089 * Sets the socket to non-blocking mode. All IO calls will return
1090 * immediately.
1091 */
948c96ef 1092void GSocket::SetNonBlocking(bool non_block)
97e6ee04 1093{
09e6e5ec 1094 assert(this);
97e6ee04
DE
1095
1096 GSocket_Debug( ("GSocket_SetNonBlocking: %d\n", (int)non_block) );
1097
09e6e5ec 1098 m_non_blocking = non_block;
97e6ee04
DE
1099}
1100
1101/* GSocket_SetTimeout:
1102 * Sets the timeout for blocking calls. Time is expressed in
1103 * milliseconds.
1104 */
ba2a81d7 1105void GSocket::SetTimeout(unsigned long millisec)
97e6ee04 1106{
09e6e5ec 1107 assert(this);
97e6ee04 1108
09e6e5ec 1109 m_timeout = millisec;
97e6ee04
DE
1110}
1111
1112/* GSocket_GetError:
d6922577 1113 * Returns the last error occurred for this socket. Note that successful
97e6ee04
DE
1114 * operations do not clear this back to GSOCK_NOERROR, so use it only
1115 * after an error.
1116 */
ba2a81d7 1117GSocketError WXDLLIMPEXP_NET GSocket::GetError()
97e6ee04 1118{
09e6e5ec 1119 assert(this);
97e6ee04 1120
09e6e5ec 1121 return m_error;
97e6ee04
DE
1122}
1123
1124/* Callbacks */
1125
1126/* GSOCK_INPUT:
1127 * There is data to be read in the input buffer. If, after a read
1128 * operation, there is still data available, the callback function will
1129 * be called again.
1130 * GSOCK_OUTPUT:
b082b524 1131 * The socket is available for writing. That is, the next write call
97e6ee04
DE
1132 * won't block. This event is generated only once, when the connection is
1133 * first established, and then only if a call failed with GSOCK_WOULDBLOCK,
1134 * when the output buffer empties again. This means that the app should
1135 * assume that it can write since the first OUTPUT event, and no more
1136 * OUTPUT events will be generated unless an error occurs.
1137 * GSOCK_CONNECTION:
d6922577 1138 * Connection successfully established, for client sockets, or incoming
97e6ee04
DE
1139 * client connection, for server sockets. Wait for this event (also watch
1140 * out for GSOCK_LOST) after you issue a nonblocking GSocket_Connect() call.
1141 * GSOCK_LOST:
1142 * The connection is lost (or a connection request failed); this could
1143 * be due to a failure, or due to the peer closing it gracefully.
1144 */
1145
1146/* GSocket_SetCallback:
1147 * Enables the callbacks specified by 'flags'. Note that 'flags'
1148 * may be a combination of flags OR'ed toghether, so the same
1149 * callback function can be made to accept different events.
1150 * The callback function must have the following prototype:
1151 *
1152 * void function(GSocket *socket, GSocketEvent event, char *cdata)
1153 */
ba2a81d7 1154void GSocket::SetCallback(GSocketEventFlags flags,
97e6ee04
DE
1155 GSocketCallback callback, char *cdata)
1156{
1157 int count;
1158
09e6e5ec 1159 assert(this);
97e6ee04
DE
1160
1161 for (count = 0; count < GSOCK_MAX_EVENT; count++)
1162 {
1163 if ((flags & (1 << count)) != 0)
1164 {
09e6e5ec
DE
1165 m_cbacks[count] = callback;
1166 m_data[count] = cdata;
97e6ee04
DE
1167 }
1168 }
1169}
1170
1171/* GSocket_UnsetCallback:
1172 * Disables all callbacks specified by 'flags', which may be a
1173 * combination of flags OR'ed toghether.
1174 */
ba2a81d7 1175void GSocket::UnsetCallback(GSocketEventFlags flags)
97e6ee04
DE
1176{
1177 int count;
1178
09e6e5ec 1179 assert(this);
97e6ee04
DE
1180
1181 for (count = 0; count < GSOCK_MAX_EVENT; count++)
1182 {
1183 if ((flags & (1 << count)) != 0)
1184 {
09e6e5ec
DE
1185 m_cbacks[count] = NULL;
1186 m_data[count] = NULL;
97e6ee04
DE
1187 }
1188 }
1189}
1190
ba2a81d7 1191GSocketError GSocket::GetSockOpt(int level, int optname,
b082b524
DE
1192 void *optval, int *optlen)
1193{
ddc1a35f 1194 if (getsockopt(m_fd, level, optname, (char*)optval, (SOCKOPTLEN_T*)optlen) == 0)
b082b524
DE
1195 {
1196 return GSOCK_NOERROR;
1197 }
1198 return GSOCK_OPTERR;
1199}
1200
ba2a81d7 1201GSocketError GSocket::SetSockOpt(int level, int optname,
b082b524
DE
1202 const void *optval, int optlen)
1203{
f71bb8ef 1204 if (setsockopt(m_fd, level, optname, (const char*)optval, optlen) == 0)
b082b524
DE
1205 {
1206 return GSOCK_NOERROR;
1207 }
1208 return GSOCK_OPTERR;
1209}
1210
ba2a81d7 1211#define CALL_CALLBACK(socket, event) { \
9a7e4a56 1212 socket->Disable(event); \
ba2a81d7
DE
1213 if (socket->m_cbacks[event]) \
1214 socket->m_cbacks[event](socket, event, socket->m_data[event]); \
97e6ee04
DE
1215}
1216
1217
ba2a81d7 1218void GSocket::Enable(GSocketEvent event)
97e6ee04 1219{
09e6e5ec 1220 m_detected &= ~(1 << event);
ba2a81d7 1221 gs_gui_functions->Install_Callback(this, event);
97e6ee04
DE
1222}
1223
ba2a81d7 1224void GSocket::Disable(GSocketEvent event)
97e6ee04 1225{
09e6e5ec 1226 m_detected |= (1 << event);
ba2a81d7 1227 gs_gui_functions->Uninstall_Callback(this, event);
97e6ee04
DE
1228}
1229
1230/* _GSocket_Input_Timeout:
1231 * For blocking sockets, wait until data is available or
1232 * until timeout ellapses.
1233 */
ba2a81d7 1234GSocketError GSocket::Input_Timeout()
97e6ee04
DE
1235{
1236 struct timeval tv;
1237 fd_set readfds;
1238 int ret;
1239
1240 /* Linux select() will overwrite the struct on return */
09e6e5ec
DE
1241 tv.tv_sec = (m_timeout / 1000);
1242 tv.tv_usec = (m_timeout % 1000) * 1000;
97e6ee04 1243
09e6e5ec 1244 if (!m_non_blocking)
97e6ee04
DE
1245 {
1246 FD_ZERO(&readfds);
09e6e5ec
DE
1247 FD_SET(m_fd, &readfds);
1248 ret = select(m_fd + 1, &readfds, NULL, NULL, &tv);
97e6ee04
DE
1249 if (ret == 0)
1250 {
1251 GSocket_Debug(( "GSocket_Input_Timeout, select returned 0\n" ));
09e6e5ec 1252 m_error = GSOCK_TIMEDOUT;
97e6ee04
DE
1253 return GSOCK_TIMEDOUT;
1254 }
1255 if (ret == -1)
1256 {
1257 GSocket_Debug(( "GSocket_Input_Timeout, select returned -1\n" ));
1258 if (errno == EBADF) { GSocket_Debug(( "Invalid file descriptor\n" )); }
1259 if (errno == EINTR) { GSocket_Debug(( "A non blocked signal was caught\n" )); }
1260 if (errno == EINVAL) { GSocket_Debug(( "The highest number descriptor is negative\n" )); }
1261 if (errno == ENOMEM) { GSocket_Debug(( "Not enough memory\n" )); }
09e6e5ec 1262 m_error = GSOCK_TIMEDOUT;
97e6ee04
DE
1263 return GSOCK_TIMEDOUT;
1264 }
1265 }
1266 return GSOCK_NOERROR;
1267}
1268
1269/* _GSocket_Output_Timeout:
1270 * For blocking sockets, wait until data can be sent without
1271 * blocking or until timeout ellapses.
1272 */
ba2a81d7 1273GSocketError GSocket::Output_Timeout()
97e6ee04
DE
1274{
1275 struct timeval tv;
1276 fd_set writefds;
1277 int ret;
1278
1279 /* Linux select() will overwrite the struct on return */
09e6e5ec
DE
1280 tv.tv_sec = (m_timeout / 1000);
1281 tv.tv_usec = (m_timeout % 1000) * 1000;
97e6ee04 1282
09e6e5ec 1283 GSocket_Debug( ("m_non_blocking has: %d\n", (int)m_non_blocking) );
97e6ee04 1284
09e6e5ec 1285 if (!m_non_blocking)
97e6ee04
DE
1286 {
1287 FD_ZERO(&writefds);
09e6e5ec
DE
1288 FD_SET(m_fd, &writefds);
1289 ret = select(m_fd + 1, NULL, &writefds, NULL, &tv);
97e6ee04
DE
1290 if (ret == 0)
1291 {
1292 GSocket_Debug(( "GSocket_Output_Timeout, select returned 0\n" ));
09e6e5ec 1293 m_error = GSOCK_TIMEDOUT;
97e6ee04
DE
1294 return GSOCK_TIMEDOUT;
1295 }
1296 if (ret == -1)
1297 {
1298 GSocket_Debug(( "GSocket_Output_Timeout, select returned -1\n" ));
1299 if (errno == EBADF) { GSocket_Debug(( "Invalid file descriptor\n" )); }
1300 if (errno == EINTR) { GSocket_Debug(( "A non blocked signal was caught\n" )); }
1301 if (errno == EINVAL) { GSocket_Debug(( "The highest number descriptor is negative\n" )); }
1302 if (errno == ENOMEM) { GSocket_Debug(( "Not enough memory\n" )); }
09e6e5ec 1303 m_error = GSOCK_TIMEDOUT;
97e6ee04
DE
1304 return GSOCK_TIMEDOUT;
1305 }
09e6e5ec 1306 if ( ! FD_ISSET(m_fd, &writefds) ) {
97e6ee04
DE
1307 GSocket_Debug(( "GSocket_Output_Timeout is buggy!\n" ));
1308 }
1309 else {
1310 GSocket_Debug(( "GSocket_Output_Timeout seems correct\n" ));
1311 }
1312 }
1313 else
1314 {
1315 GSocket_Debug(( "GSocket_Output_Timeout, didn't try select!\n" ));
1316 }
1317
1318 return GSOCK_NOERROR;
1319}
1320
ba2a81d7 1321int GSocket::Recv_Stream(char *buffer, int size)
97e6ee04 1322{
bb154f79 1323 int ret;
7e1e6965 1324 do
bb154f79
KH
1325 {
1326 ret = recv(m_fd, buffer, size, GSOCKET_MSG_NOSIGNAL);
e400d27d 1327 } while (ret == -1 && errno == EINTR); /* Loop until not interrupted */
bb154f79 1328 return ret;
97e6ee04
DE
1329}
1330
ba2a81d7 1331int GSocket::Recv_Dgram(char *buffer, int size)
97e6ee04
DE
1332{
1333 struct sockaddr from;
9e03e02d 1334 WX_SOCKLEN_T fromlen = sizeof(from);
97e6ee04
DE
1335 int ret;
1336 GSocketError err;
1337
1338 fromlen = sizeof(from);
1339
7e1e6965 1340 do
bb154f79 1341 {
9e03e02d 1342 ret = recvfrom(m_fd, buffer, size, 0, &from, (WX_SOCKLEN_T *) &fromlen);
e400d27d 1343 } while (ret == -1 && errno == EINTR); /* Loop until not interrupted */
97e6ee04
DE
1344
1345 if (ret == -1)
1346 return -1;
1347
1348 /* Translate a system address into a GSocket address */
09e6e5ec 1349 if (!m_peer)
97e6ee04 1350 {
09e6e5ec
DE
1351 m_peer = GAddress_new();
1352 if (!m_peer)
97e6ee04 1353 {
09e6e5ec 1354 m_error = GSOCK_MEMERR;
97e6ee04
DE
1355 return -1;
1356 }
1357 }
09e6e5ec 1358 err = _GAddress_translate_from(m_peer, &from, fromlen);
97e6ee04
DE
1359 if (err != GSOCK_NOERROR)
1360 {
09e6e5ec
DE
1361 GAddress_destroy(m_peer);
1362 m_peer = NULL;
1363 m_error = err;
97e6ee04
DE
1364 return -1;
1365 }
1366
1367 return ret;
1368}
1369
ba2a81d7 1370int GSocket::Send_Stream(const char *buffer, int size)
97e6ee04
DE
1371{
1372 int ret;
1373
7e1e6965
WS
1374 MASK_SIGNAL();
1375
1376 do
bb154f79
KH
1377 {
1378 ret = send(m_fd, (char *)buffer, size, GSOCKET_MSG_NOSIGNAL);
e400d27d 1379 } while (ret == -1 && errno == EINTR); /* Loop until not interrupted */
7e1e6965 1380
97e6ee04 1381 UNMASK_SIGNAL();
97e6ee04
DE
1382
1383 return ret;
1384}
1385
ba2a81d7 1386int GSocket::Send_Dgram(const char *buffer, int size)
97e6ee04
DE
1387{
1388 struct sockaddr *addr;
1389 int len, ret;
1390 GSocketError err;
1391
09e6e5ec 1392 if (!m_peer)
97e6ee04 1393 {
09e6e5ec 1394 m_error = GSOCK_INVADDR;
97e6ee04
DE
1395 return -1;
1396 }
1397
09e6e5ec 1398 err = _GAddress_translate_to(m_peer, &addr, &len);
97e6ee04
DE
1399 if (err != GSOCK_NOERROR)
1400 {
09e6e5ec 1401 m_error = err;
97e6ee04
DE
1402 return -1;
1403 }
1404
97e6ee04 1405 MASK_SIGNAL();
7e1e6965
WS
1406
1407 do
bb154f79
KH
1408 {
1409 ret = sendto(m_fd, (char *)buffer, size, 0, addr, len);
e400d27d 1410 } while (ret == -1 && errno == EINTR); /* Loop until not interrupted */
7e1e6965 1411
97e6ee04 1412 UNMASK_SIGNAL();
97e6ee04
DE
1413
1414 /* Frees memory allocated from _GAddress_translate_to */
1415 free(addr);
1416
1417 return ret;
1418}
1419
ba2a81d7 1420void GSocket::Detected_Read()
97e6ee04
DE
1421{
1422 char c;
1423
bb154f79
KH
1424 /* Safeguard against straggling call to Detected_Read */
1425 if (m_fd == INVALID_SOCKET)
1426 {
1427 return;
1428 }
1429
97e6ee04
DE
1430 /* If we have already detected a LOST event, then don't try
1431 * to do any further processing.
1432 */
09e6e5ec 1433 if ((m_detected & GSOCK_LOST_FLAG) != 0)
97e6ee04 1434 {
948c96ef 1435 m_establishing = false;
97e6ee04 1436
ba2a81d7 1437 CALL_CALLBACK(this, GSOCK_LOST);
09e6e5ec 1438 Shutdown();
97e6ee04
DE
1439 return;
1440 }
1441
bb154f79
KH
1442 int num = recv(m_fd, &c, 1, MSG_PEEK | GSOCKET_MSG_NOSIGNAL);
1443
1444 if (num > 0)
97e6ee04 1445 {
ba2a81d7 1446 CALL_CALLBACK(this, GSOCK_INPUT);
97e6ee04
DE
1447 }
1448 else
1449 {
09e6e5ec 1450 if (m_server && m_stream)
97e6ee04 1451 {
ba2a81d7 1452 CALL_CALLBACK(this, GSOCK_CONNECTION);
97e6ee04
DE
1453 }
1454 else
1455 {
e400d27d 1456 /* Do not throw a lost event in cases where the socket isn't really lost */
7e1e6965 1457 if ((errno == EWOULDBLOCK) || (errno == EAGAIN) || (errno == EINTR))
bb154f79
KH
1458 {
1459 CALL_CALLBACK(this, GSOCK_INPUT);
1460 }
7e1e6965 1461 else
bb154f79
KH
1462 {
1463 CALL_CALLBACK(this, GSOCK_LOST);
1464 Shutdown();
7e1e6965 1465 }
97e6ee04
DE
1466 }
1467 }
1468}
1469
ba2a81d7 1470void GSocket::Detected_Write()
97e6ee04
DE
1471{
1472 /* If we have already detected a LOST event, then don't try
1473 * to do any further processing.
1474 */
09e6e5ec 1475 if ((m_detected & GSOCK_LOST_FLAG) != 0)
97e6ee04 1476 {
948c96ef 1477 m_establishing = false;
97e6ee04 1478
ba2a81d7 1479 CALL_CALLBACK(this, GSOCK_LOST);
09e6e5ec 1480 Shutdown();
97e6ee04
DE
1481 return;
1482 }
1483
09e6e5ec 1484 if (m_establishing && !m_server)
97e6ee04
DE
1485 {
1486 int error;
ddc1a35f 1487 SOCKOPTLEN_T len = sizeof(error);
97e6ee04 1488
948c96ef 1489 m_establishing = false;
97e6ee04 1490
f71bb8ef 1491 getsockopt(m_fd, SOL_SOCKET, SO_ERROR, (char*)&error, &len);
97e6ee04
DE
1492
1493 if (error)
1494 {
ba2a81d7 1495 CALL_CALLBACK(this, GSOCK_LOST);
09e6e5ec 1496 Shutdown();
97e6ee04
DE
1497 }
1498 else
1499 {
ba2a81d7 1500 CALL_CALLBACK(this, GSOCK_CONNECTION);
97e6ee04
DE
1501 /* We have to fire this event by hand because CONNECTION (for clients)
1502 * and OUTPUT are internally the same and we just disabled CONNECTION
1503 * events with the above macro.
1504 */
ba2a81d7 1505 CALL_CALLBACK(this, GSOCK_OUTPUT);
97e6ee04
DE
1506 }
1507 }
1508 else
1509 {
ba2a81d7 1510 CALL_CALLBACK(this, GSOCK_OUTPUT);
97e6ee04
DE
1511 }
1512}
1513
09e6e5ec
DE
1514/* Compatibility functions for GSocket */
1515GSocket *GSocket_new(void)
1516{
ba2a81d7 1517 GSocket *newsocket = new GSocket();
09e6e5ec
DE
1518 if(newsocket->IsOk())
1519 return newsocket;
1520 delete newsocket;
1521 return NULL;
1522}
1523
97e6ee04
DE
1524/*
1525 * -------------------------------------------------------------------------
1526 * GAddress
1527 * -------------------------------------------------------------------------
1528 */
1529
1530/* CHECK_ADDRESS verifies that the current address family is either
1531 * GSOCK_NOFAMILY or GSOCK_*family*, and if it is GSOCK_NOFAMILY, it
1532 * initalizes it to be a GSOCK_*family*. In other cases, it returns
1533 * an appropiate error code.
1534 *
1535 * CHECK_ADDRESS_RETVAL does the same but returning 'retval' on error.
1536 */
1537#define CHECK_ADDRESS(address, family) \
1538{ \
1539 if (address->m_family == GSOCK_NOFAMILY) \
1540 if (_GAddress_Init_##family(address) != GSOCK_NOERROR) \
1541 return address->m_error; \
1542 if (address->m_family != GSOCK_##family) \
1543 { \
1544 address->m_error = GSOCK_INVADDR; \
1545 return GSOCK_INVADDR; \
1546 } \
1547}
1548
1549#define CHECK_ADDRESS_RETVAL(address, family, retval) \
1550{ \
1551 if (address->m_family == GSOCK_NOFAMILY) \
1552 if (_GAddress_Init_##family(address) != GSOCK_NOERROR) \
1553 return retval; \
1554 if (address->m_family != GSOCK_##family) \
1555 { \
1556 address->m_error = GSOCK_INVADDR; \
1557 return retval; \
1558 } \
1559}
1560
1561
1562GAddress *GAddress_new(void)
1563{
1564 GAddress *address;
1565
1566 if ((address = (GAddress *) malloc(sizeof(GAddress))) == NULL)
1567 return NULL;
1568
1569 address->m_family = GSOCK_NOFAMILY;
1570 address->m_addr = NULL;
1571 address->m_len = 0;
1572
1573 return address;
1574}
1575
1576GAddress *GAddress_copy(GAddress *address)
1577{
1578 GAddress *addr2;
1579
1580 assert(address != NULL);
1581
1582 if ((addr2 = (GAddress *) malloc(sizeof(GAddress))) == NULL)
1583 return NULL;
1584
1585 memcpy(addr2, address, sizeof(GAddress));
1586
1587 if (address->m_addr && address->m_len > 0)
1588 {
1589 addr2->m_addr = (struct sockaddr *)malloc(addr2->m_len);
1590 if (addr2->m_addr == NULL)
1591 {
1592 free(addr2);
1593 return NULL;
1594 }
1595 memcpy(addr2->m_addr, address->m_addr, addr2->m_len);
1596 }
1597
1598 return addr2;
1599}
1600
1601void GAddress_destroy(GAddress *address)
1602{
1603 assert(address != NULL);
1604
1605 if (address->m_addr)
1606 free(address->m_addr);
1607
1608 free(address);
1609}
1610
1611void GAddress_SetFamily(GAddress *address, GAddressType type)
1612{
1613 assert(address != NULL);
1614
1615 address->m_family = type;
1616}
1617
1618GAddressType GAddress_GetFamily(GAddress *address)
1619{
1620 assert(address != NULL);
1621
1622 return address->m_family;
1623}
1624
1625GSocketError _GAddress_translate_from(GAddress *address,
1626 struct sockaddr *addr, int len)
1627{
1628 address->m_realfamily = addr->sa_family;
1629 switch (addr->sa_family)
1630 {
1631 case AF_INET:
1632 address->m_family = GSOCK_INET;
1633 break;
1634 case AF_UNIX:
1635 address->m_family = GSOCK_UNIX;
1636 break;
1637#ifdef AF_INET6
1638 case AF_INET6:
1639 address->m_family = GSOCK_INET6;
1640 break;
1641#endif
1642 default:
1643 {
1644 address->m_error = GSOCK_INVOP;
1645 return GSOCK_INVOP;
1646 }
1647 }
1648
1649 if (address->m_addr)
1650 free(address->m_addr);
1651
1652 address->m_len = len;
1653 address->m_addr = (struct sockaddr *)malloc(len);
1654
1655 if (address->m_addr == NULL)
1656 {
1657 address->m_error = GSOCK_MEMERR;
1658 return GSOCK_MEMERR;
1659 }
1660 memcpy(address->m_addr, addr, len);
1661
1662 return GSOCK_NOERROR;
1663}
1664
1665GSocketError _GAddress_translate_to(GAddress *address,
1666 struct sockaddr **addr, int *len)
1667{
1668 if (!address->m_addr)
1669 {
1670 address->m_error = GSOCK_INVADDR;
1671 return GSOCK_INVADDR;
1672 }
1673
1674 *len = address->m_len;
1675 *addr = (struct sockaddr *)malloc(address->m_len);
1676 if (*addr == NULL)
1677 {
1678 address->m_error = GSOCK_MEMERR;
1679 return GSOCK_MEMERR;
1680 }
1681
1682 memcpy(*addr, address->m_addr, address->m_len);
1683 return GSOCK_NOERROR;
1684}
1685
1686/*
1687 * -------------------------------------------------------------------------
1688 * Internet address family
1689 * -------------------------------------------------------------------------
1690 */
1691
1692GSocketError _GAddress_Init_INET(GAddress *address)
1693{
1694 address->m_len = sizeof(struct sockaddr_in);
1695 address->m_addr = (struct sockaddr *) malloc(address->m_len);
1696 if (address->m_addr == NULL)
1697 {
1698 address->m_error = GSOCK_MEMERR;
1699 return GSOCK_MEMERR;
1700 }
1701
1702 address->m_family = GSOCK_INET;
1703 address->m_realfamily = PF_INET;
1704 ((struct sockaddr_in *)address->m_addr)->sin_family = AF_INET;
1705 ((struct sockaddr_in *)address->m_addr)->sin_addr.s_addr = INADDR_ANY;
1706
1707 return GSOCK_NOERROR;
1708}
1709
1710GSocketError GAddress_INET_SetHostName(GAddress *address, const char *hostname)
1711{
1712 struct hostent *he;
1713 struct in_addr *addr;
1714
1715 assert(address != NULL);
1716
1717 CHECK_ADDRESS(address, INET);
1718
1719 addr = &(((struct sockaddr_in *)address->m_addr)->sin_addr);
1720
1721 /* If it is a numeric host name, convert it now */
1722#if defined(HAVE_INET_ATON)
1723 if (inet_aton(hostname, addr) == 0)
1724 {
1725#elif defined(HAVE_INET_ADDR)
8c0f8906 1726 if ( (addr->s_addr = inet_addr(hostname)) == (unsigned)-1 )
97e6ee04
DE
1727 {
1728#else
1729 /* Use gethostbyname by default */
9d715960 1730#ifndef __WXMAC__
ba2a81d7 1731 int val = 1; /* VA doesn't like constants in conditional expressions */
97e6ee04 1732 if (val)
9d715960 1733#endif
97e6ee04
DE
1734 {
1735#endif
1736 struct in_addr *array_addr;
1737
1738 /* It is a real name, we solve it */
1739 if ((he = gethostbyname(hostname)) == NULL)
1740 {
1741 /* Reset to invalid address */
1742 addr->s_addr = INADDR_NONE;
1743 address->m_error = GSOCK_NOHOST;
1744 return GSOCK_NOHOST;
1745 }
1746 array_addr = (struct in_addr *) *(he->h_addr_list);
1747 addr->s_addr = array_addr[0].s_addr;
1748 }
1749 return GSOCK_NOERROR;
1750}
1751
1752GSocketError GAddress_INET_SetAnyAddress(GAddress *address)
1753{
1754 return GAddress_INET_SetHostAddress(address, INADDR_ANY);
1755}
1756
1757GSocketError GAddress_INET_SetHostAddress(GAddress *address,
1758 unsigned long hostaddr)
1759{
1760 struct in_addr *addr;
1761
1762 assert(address != NULL);
1763
1764 CHECK_ADDRESS(address, INET);
1765
1766 addr = &(((struct sockaddr_in *)address->m_addr)->sin_addr);
9d715960 1767 addr->s_addr = htonl(hostaddr);
97e6ee04
DE
1768
1769 return GSOCK_NOERROR;
1770}
1771
1772GSocketError GAddress_INET_SetPortName(GAddress *address, const char *port,
1773 const char *protocol)
1774{
1775 struct servent *se;
1776 struct sockaddr_in *addr;
1777
1778 assert(address != NULL);
1779 CHECK_ADDRESS(address, INET);
1780
1781 if (!port)
1782 {
1783 address->m_error = GSOCK_INVPORT;
1784 return GSOCK_INVPORT;
1785 }
b082b524 1786
f6bc1c74
DW
1787#if defined(__WXPM__) && defined(__EMX__)
1788 se = getservbyname(port, (char*)protocol);
1789#else
97e6ee04 1790 se = getservbyname(port, protocol);
f6bc1c74 1791#endif
97e6ee04
DE
1792 if (!se)
1793 {
1794 /* the cast to int suppresses compiler warnings about subscript having the
1795 type char */
1796 if (isdigit((int)port[0]))
1797 {
1798 int port_int;
1799
1800 port_int = atoi(port);
1801 addr = (struct sockaddr_in *)address->m_addr;
1802 addr->sin_port = htons(port_int);
1803 return GSOCK_NOERROR;
1804 }
1805
1806 address->m_error = GSOCK_INVPORT;
1807 return GSOCK_INVPORT;
1808 }
1809
1810 addr = (struct sockaddr_in *)address->m_addr;
1811 addr->sin_port = se->s_port;
1812
1813 return GSOCK_NOERROR;
1814}
1815
1816GSocketError GAddress_INET_SetPort(GAddress *address, unsigned short port)
1817{
1818 struct sockaddr_in *addr;
1819
1820 assert(address != NULL);
1821 CHECK_ADDRESS(address, INET);
b082b524 1822
97e6ee04
DE
1823 addr = (struct sockaddr_in *)address->m_addr;
1824 addr->sin_port = htons(port);
1825
1826 return GSOCK_NOERROR;
1827}
1828
1829GSocketError GAddress_INET_GetHostName(GAddress *address, char *hostname, size_t sbuf)
1830{
1831 struct hostent *he;
1832 char *addr_buf;
1833 struct sockaddr_in *addr;
1834
b082b524 1835 assert(address != NULL);
97e6ee04
DE
1836 CHECK_ADDRESS(address, INET);
1837
1838 addr = (struct sockaddr_in *)address->m_addr;
1839 addr_buf = (char *)&(addr->sin_addr);
1840
1841 he = gethostbyaddr(addr_buf, sizeof(addr->sin_addr), AF_INET);
1842 if (he == NULL)
1843 {
1844 address->m_error = GSOCK_NOHOST;
1845 return GSOCK_NOHOST;
1846 }
1847
1848 strncpy(hostname, he->h_name, sbuf);
1849
1850 return GSOCK_NOERROR;
1851}
1852
1853unsigned long GAddress_INET_GetHostAddress(GAddress *address)
1854{
1855 struct sockaddr_in *addr;
1856
b082b524
DE
1857 assert(address != NULL);
1858 CHECK_ADDRESS_RETVAL(address, INET, 0);
97e6ee04
DE
1859
1860 addr = (struct sockaddr_in *)address->m_addr;
1861
9d715960 1862 return ntohl(addr->sin_addr.s_addr);
97e6ee04
DE
1863}
1864
1865unsigned short GAddress_INET_GetPort(GAddress *address)
1866{
1867 struct sockaddr_in *addr;
1868
b082b524
DE
1869 assert(address != NULL);
1870 CHECK_ADDRESS_RETVAL(address, INET, 0);
97e6ee04
DE
1871
1872 addr = (struct sockaddr_in *)address->m_addr;
1873 return ntohs(addr->sin_port);
1874}
1875
1876/*
1877 * -------------------------------------------------------------------------
1878 * Unix address family
1879 * -------------------------------------------------------------------------
1880 */
1881
1882#ifndef __VISAGECPP__
1883GSocketError _GAddress_Init_UNIX(GAddress *address)
1884{
1885 address->m_len = sizeof(struct sockaddr_un);
1886 address->m_addr = (struct sockaddr *)malloc(address->m_len);
1887 if (address->m_addr == NULL)
1888 {
1889 address->m_error = GSOCK_MEMERR;
1890 return GSOCK_MEMERR;
1891 }
1892
1893 address->m_family = GSOCK_UNIX;
1894 address->m_realfamily = PF_UNIX;
1895 ((struct sockaddr_un *)address->m_addr)->sun_family = AF_UNIX;
1896 ((struct sockaddr_un *)address->m_addr)->sun_path[0] = 0;
1897
1898 return GSOCK_NOERROR;
1899}
1900
1901#define UNIX_SOCK_PATHLEN (sizeof(addr->sun_path)/sizeof(addr->sun_path[0]))
1902
1903GSocketError GAddress_UNIX_SetPath(GAddress *address, const char *path)
1904{
1905 struct sockaddr_un *addr;
1906
b082b524 1907 assert(address != NULL);
97e6ee04 1908
b082b524 1909 CHECK_ADDRESS(address, UNIX);
97e6ee04
DE
1910
1911 addr = ((struct sockaddr_un *)address->m_addr);
1912 strncpy(addr->sun_path, path, UNIX_SOCK_PATHLEN);
1913 addr->sun_path[UNIX_SOCK_PATHLEN - 1] = '\0';
1914
1915 return GSOCK_NOERROR;
1916}
1917
1918GSocketError GAddress_UNIX_GetPath(GAddress *address, char *path, size_t sbuf)
1919{
1920 struct sockaddr_un *addr;
1921
1922 assert(address != NULL);
1923 CHECK_ADDRESS(address, UNIX);
1924
1925 addr = (struct sockaddr_un *)address->m_addr;
1926
1927 strncpy(path, addr->sun_path, sbuf);
1928
1929 return GSOCK_NOERROR;
1930}
1931#endif /* !defined(__VISAGECPP__) */
1932#endif /* wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__) */