]>
git.saurik.com Git - wxWidgets.git/blob - src/os2/gsocket.c
1 /* -------------------------------------------------------------------------
2 * Project: GSocket (Generic Socket) for WX
4 * Purpose: GSocket main Unix-style file
6 * -------------------------------------------------------------------------
11 /* I don't see, why this include is needed, but it seems to be necessary
12 sometimes. For EMX, including C++ headers into plain C source breaks
13 compilation, so don't do it there. */
19 #define BSD_SELECT /* use Berkley Sockets select */
22 #include <sys\types.h>
25 #include <netinet/in.h>
26 #include <arpa/inet.h>
29 #define HAVE_INET_ADDR
37 #if defined(__VISAGECPP__) && __IBMCPP__ < 400
42 #include <sys\socket.h>
43 #include <sys\ioctl.h>
44 #include <sys\select.h>
46 #define soclose(a) close(a)
48 #define select(a,b,c,d,e) bsdselect(a,b,c,d,e)
49 int _System
bsdselect(int,
54 int _System
soclose(int);
66 #include "wx/gsocket.h"
67 #include "wx/os2/gsockos2.h"
73 # define SOCKLEN_T socklen_t
76 # define SOCKLEN_T int
81 /* Global initialisers */
83 #if !defined(__VISAGECPP__)
97 void GSocket_Cleanup()
101 /* Constructors / Destructors */
103 GSocket
*GSocket_new()
108 socket
= (GSocket
*)malloc(sizeof(GSocket
));
114 for (i
=0;i
<GSOCK_MAX_EVENT
;i
++)
116 socket
->m_cbacks
[i
] = NULL
;
118 socket
->m_detected
= 0;
119 socket
->m_local
= NULL
;
120 socket
->m_peer
= NULL
;
121 socket
->m_error
= GSOCK_NOERROR
;
122 socket
->m_server
= 0;
123 socket
->m_stream
= 1;
124 socket
->m_gui_dependent
= NULL
;
125 socket
->m_non_blocking
= 0;
126 socket
->m_timeout
= 10*60*1000;
127 /* 10 minutes * 60 sec * 1000 millisec */
128 socket
->m_establishing
= 0;
133 void GSocket_destroy(GSocket
*socket
)
135 assert(socket
!= NULL
);
137 /* First, we check that the socket is really shutdowned */
138 if (socket
->m_fd
!= -1)
139 GSocket_Shutdown(socket
);
141 /* We destroy private addresses */
143 GAddress_destroy(socket
->m_local
);
146 GAddress_destroy(socket
->m_peer
);
148 /* We destroy socket itself */
152 void GSocket_Shutdown(GSocket
*socket
)
156 assert(socket
!= NULL
);
158 /* If socket has been created, we shutdown it */
159 if (socket
->m_fd
!= -1)
161 shutdown(socket
->m_fd
, 2);
162 soclose(socket
->m_fd
);
166 /* We also disable GUI callbacks */
167 for (evt
= 0; evt
< GSOCK_MAX_EVENT
; evt
++)
168 socket
->m_cbacks
[evt
] = NULL
;
170 socket
->m_detected
= 0;
174 /* Address handling */
176 GSocketError
GSocket_SetLocal(GSocket
*socket
, GAddress
*address
)
178 assert(socket
!= NULL
);
180 if ((socket
->m_fd
!= -1 && !socket
->m_server
)) {
181 socket
->m_error
= GSOCK_INVSOCK
;
182 return GSOCK_INVSOCK
;
185 if (address
== NULL
|| address
->m_family
== GSOCK_NOFAMILY
) {
186 socket
->m_error
= GSOCK_INVADDR
;
187 return GSOCK_INVADDR
;
191 GAddress_destroy(socket
->m_local
);
193 socket
->m_local
= GAddress_copy(address
);
195 return GSOCK_NOERROR
;
198 GSocketError
GSocket_SetPeer(GSocket
*socket
, GAddress
*address
)
200 assert(socket
!= NULL
);
202 if (address
== NULL
|| address
->m_family
== GSOCK_NOFAMILY
) {
203 socket
->m_error
= GSOCK_INVADDR
;
204 return GSOCK_INVADDR
;
208 GAddress_destroy(socket
->m_peer
);
210 socket
->m_peer
= GAddress_copy(address
);
212 return GSOCK_NOERROR
;
215 GAddress
*GSocket_GetLocal(GSocket
*socket
)
218 struct sockaddr addr
;
222 assert(socket
!= NULL
);
225 return GAddress_copy(socket
->m_local
);
227 if (socket
->m_fd
== -1) {
228 socket
->m_error
= GSOCK_INVSOCK
;
234 if (getsockname(socket
->m_fd
, &addr
, &size
) < 0) {
235 socket
->m_error
= GSOCK_IOERR
;
239 address
= GAddress_new();
240 if (address
== NULL
) {
241 socket
->m_error
= GSOCK_MEMERR
;
244 socket
->m_error
= _GAddress_translate_from(address
, &addr
, size
);
245 if (socket
->m_error
!= GSOCK_NOERROR
) {
246 GAddress_destroy(address
);
253 GAddress
*GSocket_GetPeer(GSocket
*socket
)
255 assert(socket
!= NULL
);
258 return GAddress_copy(socket
->m_peer
);
263 /* Server specific parts */
265 /* GSocket_SetServer:
266 * Sets up the socket as a server. It uses the "Local" field of GSocket.
267 * "Local" must be set by GSocket_SetLocal() before GSocket_SetServer()
268 * is called. Possible error codes are: GSOCK_INVSOCK if socket has not
269 * been initialized, GSOCK_INVADDR if the local address has not been
270 * defined and GSOCK_IOERR for other internal errors.
272 GSocketError
GSocket_SetServer(GSocket
*sck
)
279 if (sck
->m_fd
!= -1) {
280 sck
->m_error
= GSOCK_INVSOCK
;
281 return GSOCK_INVSOCK
;
285 sck
->m_error
= GSOCK_INVADDR
;
286 return GSOCK_INVADDR
;
289 /* We always have a stream here */
293 /* Create the socket */
294 sck
->m_fd
= socket(sck
->m_local
->m_realfamily
, SOCK_STREAM
, 0);
296 if (sck
->m_fd
== -1) {
297 sck
->m_error
= GSOCK_IOERR
;
301 ioctl(sck
->m_fd
, FIONBIO
, (char*)&arg
, sizeof(int));
303 /* Bind the socket to the LOCAL address */
304 if (bind(sck
->m_fd
, sck
->m_local
->m_addr
, sck
->m_local
->m_len
) < 0) {
307 sck
->m_error
= GSOCK_IOERR
;
311 /* Enable listening up to 5 connections */
312 if (listen(sck
->m_fd
, 5) < 0) {
315 sck
->m_error
= GSOCK_IOERR
;
319 return GSOCK_NOERROR
;
322 /* GSocket_WaitConnection:
323 * Waits for an incoming client connection.
325 GSocket
*GSocket_WaitConnection(GSocket
*socket
)
330 assert(socket
!= NULL
);
332 /* Reenable CONNECTION events */
333 _GSocket_Enable(socket
, GSOCK_CONNECTION
);
335 /* If the socket has already been created, we exit immediately */
336 if (socket
->m_fd
== -1 || !socket
->m_server
)
338 socket
->m_error
= GSOCK_INVSOCK
;
342 /* Create a GSocket object for the new connection */
343 connection
= GSocket_new();
346 connection
->m_error
= GSOCK_MEMERR
;
350 /* Accept the incoming connection */
351 if (_GSocket_Input_Timeout(socket
) == GSOCK_TIMEDOUT
)
353 GSocket_destroy(connection
);
354 /* socket->m_error set by _GSocket_Input_Timeout */
358 connection
->m_fd
= accept(socket
->m_fd
, NULL
, NULL
);
360 if (connection
->m_fd
== -1)
362 if (errno
== EWOULDBLOCK
)
363 socket
->m_error
= GSOCK_WOULDBLOCK
;
365 socket
->m_error
= GSOCK_IOERR
;
367 GSocket_destroy(connection
);
371 /* Initialize all fields */
372 connection
->m_server
= 0;
373 connection
->m_stream
= 1;
374 connection
->m_oriented
= 1;
376 ioctl(connection
->m_fd
, FIONBIO
, (char*)&arg
, sizeof(int));
380 /* Non oriented connections */
382 GSocketError
GSocket_SetNonOriented(GSocket
*sck
)
388 if (sck
->m_fd
!= -1) {
389 sck
->m_error
= GSOCK_INVSOCK
;
390 return GSOCK_INVSOCK
;
394 sck
->m_error
= GSOCK_INVADDR
;
395 return GSOCK_INVADDR
;
402 /* Create the socket */
403 sck
->m_fd
= socket(sck
->m_local
->m_realfamily
, SOCK_DGRAM
, 0);
406 sck
->m_error
= GSOCK_IOERR
;
410 ioctl(sck
->m_fd
, FIONBIO
, (char*)&arg
, sizeof(int));
412 /* Bind it to the LOCAL address */
413 if (bind(sck
->m_fd
, sck
->m_local
->m_addr
, sck
->m_local
->m_len
) < 0) {
416 sck
->m_error
= GSOCK_IOERR
;
420 return GSOCK_NOERROR
;
423 /* Client specific parts */
426 * Establishes a client connection to a server using the "Peer"
427 * field of GSocket. "Peer" must be set by GSocket_SetPeer() before
428 * GSocket_Connect() is called. Possible error codes are GSOCK_INVSOCK,
429 * GSOCK_INVADDR, GSOCK_TIMEDOUT, GSOCK_WOULDBLOCK and GSOCK_IOERR.
430 * If a socket is nonblocking and Connect() returns GSOCK_WOULDBLOCK,
431 * the connection request can be completed later. Use GSocket_Select()
432 * to check or wait for a GSOCK_CONNECTION event.
434 GSocketError
GSocket_Connect(GSocket
*sck
, GSocketStream stream
)
441 /* Enable CONNECTION events (needed for nonblocking connections) */
442 _GSocket_Enable(sck
, GSOCK_CONNECTION
);
446 sck
->m_error
= GSOCK_INVSOCK
;
447 return GSOCK_INVSOCK
;
452 sck
->m_error
= GSOCK_INVADDR
;
453 return GSOCK_INVADDR
;
456 /* Test whether we want the socket to be a stream (e.g. TCP) */
457 sck
->m_stream
= (stream
== GSOCK_STREAMED
);
460 sck
->m_establishing
= 0;
467 /* Create the socket */
468 sck
->m_fd
= socket(sck
->m_peer
->m_realfamily
, type
, 0);
470 if (sck
->m_fd
== -1) {
471 sck
->m_error
= GSOCK_IOERR
;
475 ioctl(sck
->m_fd
, FIONBIO
, (char*)&arg
, sizeof(int));
477 /* Connect it to the PEER address */
478 ret
= connect(sck
->m_fd
, sck
->m_peer
->m_addr
, sck
->m_peer
->m_len
);
484 /* If connect failed with EINPROGRESS and the GSocket object
485 * is in blocking mode, we select() for the specified timeout
486 * checking for writability to see if the connection request
489 if ((err
== EINPROGRESS
) && (!sck
->m_non_blocking
))
491 if (_GSocket_Output_Timeout(sck
) == GSOCK_TIMEDOUT
)
495 /* sck->m_error is set in _GSocket_Output_Timeout */
496 fprintf(stderr
, "Blocking connect timeouts\n");
497 return GSOCK_TIMEDOUT
;
501 fprintf(stderr
, "Blocking connect OK\n");
502 return GSOCK_NOERROR
;
506 /* If connect failed with EINPROGRESS and the GSocket object
507 * is set to nonblocking, we set m_error to GSOCK_WOULDBLOCK
508 * (and return GSOCK_WOULDBLOCK) but we don't close the socket;
509 * this way if the connection completes, a GSOCK_CONNECTION
510 * event will be generated, if enabled.
512 if ((err
== EINPROGRESS
) && (sck
->m_non_blocking
))
514 sck
->m_error
= GSOCK_WOULDBLOCK
;
515 sck
->m_establishing
= 1;
516 fprintf(stderr
, "Nonblocking connect in progress\n");
518 return GSOCK_WOULDBLOCK
;
521 /* If connect failed with an error other than EINPROGRESS,
522 * then the call to GSocket_Connect has failed.
526 sck
->m_error
= GSOCK_IOERR
;
528 fprintf(stderr
, "Connect failed (generic err)\n");
532 fprintf(stderr
, "Connect OK\n");
533 return GSOCK_NOERROR
;
538 /* Like recv(), send(), ... */
539 int GSocket_Read(GSocket
*socket
, char *buffer
, int size
)
543 assert(socket
!= NULL
);
545 /* Reenable INPUT events */
546 _GSocket_Enable(socket
, GSOCK_INPUT
);
548 if (socket
->m_fd
== -1 || socket
->m_server
)
550 socket
->m_error
= GSOCK_INVSOCK
;
554 if (_GSocket_Input_Timeout(socket
) == GSOCK_TIMEDOUT
)
557 if (socket
->m_stream
)
558 ret
= _GSocket_Recv_Stream(socket
, buffer
, size
);
560 ret
= _GSocket_Recv_Dgram(socket
, buffer
, size
);
564 if (errno
== EWOULDBLOCK
)
565 socket
->m_error
= GSOCK_WOULDBLOCK
;
567 socket
->m_error
= GSOCK_IOERR
;
573 int GSocket_Write(GSocket
*socket
, const char *buffer
,
578 assert(socket
!= NULL
);
580 if (socket
->m_fd
== -1 || socket
->m_server
)
582 socket
->m_error
= GSOCK_INVSOCK
;
586 if (_GSocket_Output_Timeout(socket
) == GSOCK_TIMEDOUT
)
589 if (socket
->m_stream
)
590 ret
= _GSocket_Send_Stream(socket
, buffer
, size
);
592 ret
= _GSocket_Send_Dgram(socket
, buffer
, size
);
596 if (errno
== EWOULDBLOCK
)
597 socket
->m_error
= GSOCK_WOULDBLOCK
;
599 socket
->m_error
= GSOCK_IOERR
;
601 /* Only reenable OUTPUT events after an error (just like WSAAsyncSelect
602 * in MSW). Once the first OUTPUT event is received, users can assume
603 * that the socket is writable until a read operation fails. Only then
604 * will further OUTPUT events be posted.
606 _GSocket_Enable(socket
, GSOCK_OUTPUT
);
613 * Polls the socket to determine its status. This function will
614 * check for the events specified in the 'flags' parameter, and
615 * it will return a mask indicating which operations can be
616 * performed. This function won't block, regardless of the
617 * mode (blocking|nonblocking) of the socket.
619 GSocketEventFlags
GSocket_Select(GSocket
*socket
, GSocketEventFlags flags
)
621 assert(socket
!= NULL
);
623 return (flags
& socket
->m_detected
);
628 /* GSocket_SetNonBlocking:
629 * Sets the socket to non-blocking mode. This is useful if
630 * we don't want to wait.
632 void GSocket_SetNonBlocking(GSocket
*socket
, int non_block
)
634 assert(socket
!= NULL
);
636 socket
->m_non_blocking
= non_block
;
639 /* GSocket_SetTimeout:
640 * Sets the timeout for blocking calls. Time is
641 * expressed in milliseconds.
643 void GSocket_SetTimeout(GSocket
*socket
, unsigned long millisec
)
645 assert(socket
!= NULL
);
647 socket
->m_timeout
= millisec
;
651 * Returns the last error occured for this socket.
653 GSocketError
GSocket_GetError(GSocket
*socket
)
655 assert(socket
!= NULL
);
657 return socket
->m_error
;
662 /* Only one callback is possible for each event (INPUT, OUTPUT, CONNECTION
663 * and LOST). The callbacks are called in the following situations:
665 * INPUT: There is at least one byte in the input buffer
666 * OUTPUT: The system is sure that the next write call will not block
667 * CONNECTION: Two cases are possible:
668 * Client socket -> the connection is established
669 * Server socket -> a client requests a connection
670 * LOST: The connection is lost
672 * An event is generated only once and its state is reseted when the
673 * relative IO call is requested.
674 * For example: INPUT -> GSocket_Read()
675 * CONNECTION -> GSocket_Accept()
678 /* GSocket_SetCallback:
679 * Enables the callbacks specified by 'flags'. Note that 'flags'
680 * may be a combination of flags OR'ed toghether, so the same
681 * callback function can be made to accept different events.
682 * The callback function must have the following prototype:
684 * void function(GSocket *socket, GSocketEvent event, char *cdata)
686 void GSocket_SetCallback(GSocket
*socket
, GSocketEventFlags flags
,
687 GSocketCallback callback
, char *cdata
)
691 assert(socket
!= NULL
);
693 for (count
= 0; count
< GSOCK_MAX_EVENT
; count
++)
695 if ((flags
& (1 << count
)) != 0)
697 socket
->m_cbacks
[count
] = callback
;
698 socket
->m_data
[count
] = cdata
;
703 /* GSocket_UnsetCallback:
704 * Disables all callbacks specified by 'flags', which may be a
705 * combination of flags OR'ed toghether.
707 void GSocket_UnsetCallback(GSocket
*socket
, GSocketEventFlags flags
)
711 assert(socket
!= NULL
);
713 for (count
= 0; count
< GSOCK_MAX_EVENT
; count
++)
715 if ((flags
& (1 << count
)) != 0)
717 socket
->m_cbacks
[count
] = NULL
;
718 socket
->m_data
[count
] = NULL
;
723 #define CALL_CALLBACK(socket, event) { \
724 _GSocket_Disable(socket, event); \
725 if (socket->m_cbacks[event]) \
726 socket->m_cbacks[event](socket, event, socket->m_data[event]); \
730 void _GSocket_Enable(GSocket
*socket
, GSocketEvent event
)
732 socket
->m_detected
&= ~(1 << event
);
736 void _GSocket_Disable(GSocket
*socket
, GSocketEvent event
)
738 socket
->m_detected
|= (1 << event
);
741 /* _GSocket_Input_Timeout:
742 * For blocking sockets, wait until data is available or
743 * until timeout ellapses.
745 GSocketError
_GSocket_Input_Timeout(GSocket
*socket
)
750 tv
.tv_sec
= (socket
->m_timeout
/ 1000);
751 tv
.tv_usec
= (socket
->m_timeout
% 1000) * 1000;
753 if (!socket
->m_non_blocking
)
756 FD_SET(socket
->m_fd
, &readfds
);
757 if (select(socket
->m_fd
+ 1, &readfds
, NULL
, NULL
, &tv
) == 0)
759 socket
->m_error
= GSOCK_TIMEDOUT
;
760 return GSOCK_TIMEDOUT
;
763 return GSOCK_NOERROR
;
766 /* _GSocket_Output_Timeout:
767 * For blocking sockets, wait until data can be sent without
768 * blocking or until timeout ellapses.
770 GSocketError
_GSocket_Output_Timeout(GSocket
*socket
)
775 tv
.tv_sec
= (socket
->m_timeout
/ 1000);
776 tv
.tv_usec
= (socket
->m_timeout
% 1000) * 1000;
778 if (!socket
->m_non_blocking
)
781 FD_SET(socket
->m_fd
, &writefds
);
782 if (select(socket
->m_fd
+ 1, NULL
, &writefds
, NULL
, &tv
) == 0)
784 socket
->m_error
= GSOCK_TIMEDOUT
;
785 return GSOCK_TIMEDOUT
;
788 return GSOCK_NOERROR
;
791 int _GSocket_Recv_Stream(GSocket
*socket
, char *buffer
, int size
)
795 ret
= recv(socket
->m_fd
, buffer
, size
, 0);
800 int _GSocket_Recv_Dgram(GSocket
*socket
, char *buffer
, int size
)
802 struct sockaddr from
;
807 fromlen
= sizeof(from
);
809 ret
= recvfrom(socket
->m_fd
, buffer
, size
, 0, &from
, &fromlen
);
814 /* Translate a system address into a GSocket address */
817 socket
->m_peer
= GAddress_new();
820 socket
->m_error
= GSOCK_MEMERR
;
824 err
= _GAddress_translate_from(socket
->m_peer
, &from
, fromlen
);
825 if (err
!= GSOCK_NOERROR
)
827 GAddress_destroy(socket
->m_peer
);
828 socket
->m_peer
= NULL
;
829 socket
->m_error
= err
;
836 int _GSocket_Send_Stream(GSocket
*socket
, const char *buffer
, int size
)
841 ret
= send(socket
->m_fd
, (char*)buffer
, size
, 0);
846 int _GSocket_Send_Dgram(GSocket
*socket
, const char *buffer
, int size
)
848 struct sockaddr
*addr
;
852 if (!socket
->m_peer
) {
853 socket
->m_error
= GSOCK_INVADDR
;
857 err
= _GAddress_translate_to(socket
->m_peer
, &addr
, &len
);
858 if (err
!= GSOCK_NOERROR
) {
859 socket
->m_error
= err
;
863 ret
= sendto(socket
->m_fd
, (char*)buffer
, size
, 0, addr
, len
);
865 /* Frees memory allocated from _GAddress_translate_to */
871 void _GSocket_Detected_Read(GSocket
*socket
)
876 if (socket
->m_stream
)
878 ret
= recv(socket
->m_fd
, &c
, 1, MSG_PEEK
);
880 if (ret
< 0 && socket
->m_server
)
882 CALL_CALLBACK(socket
, GSOCK_CONNECTION
);
888 CALL_CALLBACK(socket
, GSOCK_INPUT
);
892 CALL_CALLBACK(socket
, GSOCK_LOST
);
897 void _GSocket_Detected_Write(GSocket
*socket
)
899 if (socket
->m_establishing
&& !socket
->m_server
)
903 socket
->m_establishing
= 0;
906 getsockopt(socket
->m_fd
, SOL_SOCKET
, SO_ERROR
, (char*)&error
, &len
);
910 CALL_CALLBACK(socket
, GSOCK_LOST
);
914 CALL_CALLBACK(socket
, GSOCK_CONNECTION
);
915 /* We have to fire this event by hand because CONNECTION (for clients)
916 * and OUTPUT are internally the same and we just disabled CONNECTION
917 * events with the above macro.
919 CALL_CALLBACK(socket
, GSOCK_OUTPUT
);
924 CALL_CALLBACK(socket
, GSOCK_OUTPUT
);
929 * -------------------------------------------------------------------------
931 * -------------------------------------------------------------------------
934 /* CHECK_ADDRESS verifies that the current family is either GSOCK_NOFAMILY or
935 * GSOCK_*family*. In case it is GSOCK_NOFAMILY, it initializes address to be
936 * a GSOCK_*family*. In other cases, it returns GSOCK_INVADDR.
938 #define CHECK_ADDRESS(address, family, retval) \
940 if (address->m_family == GSOCK_NOFAMILY) \
941 if (_GAddress_Init_##family(address) != GSOCK_NOERROR) {\
942 return address->m_error; \
944 if (address->m_family != GSOCK_##family) {\
945 address->m_error = GSOCK_INVADDR; \
950 GAddress
*GAddress_new()
954 address
= (GAddress
*)malloc(sizeof(GAddress
));
959 address
->m_family
= GSOCK_NOFAMILY
;
960 address
->m_addr
= NULL
;
966 GAddress
*GAddress_copy(GAddress
*address
)
970 assert(address
!= NULL
);
972 addr2
= (GAddress
*)malloc(sizeof(GAddress
));
977 memcpy(addr2
, address
, sizeof(GAddress
));
979 if (address
->m_addr
) {
980 addr2
->m_addr
= (struct sockaddr
*)malloc(addr2
->m_len
);
981 if (addr2
->m_addr
== NULL
) {
985 memcpy(addr2
->m_addr
, address
->m_addr
, addr2
->m_len
);
991 void GAddress_destroy(GAddress
*address
)
993 assert(address
!= NULL
);
998 void GAddress_SetFamily(GAddress
*address
, GAddressType type
)
1000 assert(address
!= NULL
);
1002 address
->m_family
= type
;
1005 GAddressType
GAddress_GetFamily(GAddress
*address
)
1007 assert(address
!= NULL
);
1009 return address
->m_family
;
1012 GSocketError
_GAddress_translate_from(GAddress
*address
, struct sockaddr
*addr
, int len
){
1013 address
->m_realfamily
= addr
->sa_family
;
1014 switch (addr
->sa_family
) {
1016 address
->m_family
= GSOCK_INET
;
1019 address
->m_family
= GSOCK_UNIX
;
1023 address
->m_family
= GSOCK_INET6
;
1028 address
->m_error
= GSOCK_INVOP
;
1033 if (address
->m_addr
)
1034 free(address
->m_addr
);
1036 address
->m_len
= len
;
1037 address
->m_addr
= (struct sockaddr
*)malloc(len
);
1038 if (address
->m_addr
== NULL
) {
1039 address
->m_error
= GSOCK_MEMERR
;
1040 return GSOCK_MEMERR
;
1042 memcpy(address
->m_addr
, addr
, len
);
1044 return GSOCK_NOERROR
;
1047 GSocketError
_GAddress_translate_to(GAddress
*address
,
1048 struct sockaddr
**addr
, int *len
)
1050 if (!address
->m_addr
) {
1051 address
->m_error
= GSOCK_INVADDR
;
1052 return GSOCK_INVADDR
;
1055 *len
= address
->m_len
;
1056 *addr
= (struct sockaddr
*)malloc(address
->m_len
);
1057 if (*addr
== NULL
) {
1058 address
->m_error
= GSOCK_MEMERR
;
1059 return GSOCK_MEMERR
;
1062 memcpy(*addr
, address
->m_addr
, address
->m_len
);
1063 return GSOCK_NOERROR
;
1067 * -------------------------------------------------------------------------
1068 * Internet address family
1069 * -------------------------------------------------------------------------
1072 GSocketError
_GAddress_Init_INET(GAddress
*address
)
1074 address
->m_addr
= (struct sockaddr
*)malloc(sizeof(struct sockaddr_in
));
1075 if (address
->m_addr
== NULL
) {
1076 address
->m_error
= GSOCK_MEMERR
;
1077 return GSOCK_MEMERR
;
1080 address
->m_len
= sizeof(struct sockaddr_in
);
1082 address
->m_family
= GSOCK_INET
;
1083 address
->m_realfamily
= PF_INET
;
1084 ((struct sockaddr_in
*)address
->m_addr
)->sin_family
= AF_INET
;
1085 ((struct sockaddr_in
*)address
->m_addr
)->sin_addr
.s_addr
= INADDR_ANY
;
1087 return GSOCK_NOERROR
;
1090 GSocketError
GAddress_INET_SetHostName(GAddress
*address
, const char *hostname
)
1093 struct in_addr
*addr
;
1095 assert(address
!= NULL
);
1097 CHECK_ADDRESS(address
, INET
, GSOCK_INVADDR
);
1099 addr
= &(((struct sockaddr_in
*)address
->m_addr
)->sin_addr
);
1101 /* If it is a numeric host name, convert it now */
1102 #if defined(HAVE_INET_ATON)
1103 if (inet_aton(hostname
, addr
) == 0) {
1104 #elif defined(HAVE_INET_ADDR)
1105 /* Fix from Guillermo Rodriguez Garcia <guille@iies.es> */
1106 if ( (addr
->s_addr
= inet_addr(hostname
)) == -1 ) {
1108 struct in_addr
*array_addr
;
1110 /* It is a real name, we solve it */
1111 he
= gethostbyname((char*)hostname
);
1113 address
->m_error
= GSOCK_NOHOST
;
1114 return GSOCK_NOHOST
;
1116 array_addr
= (struct in_addr
*) *(he
->h_addr_list
);
1117 addr
->s_addr
= array_addr
[0].s_addr
;
1118 #if defined(HAVE_INET_ATON)
1120 #elif defined(HAVE_INET_ADDR)
1123 return GSOCK_NOERROR
;
1126 GSocketError
GAddress_INET_SetAnyAddress(GAddress
*address
)
1128 return GAddress_INET_SetHostAddress(address
, INADDR_ANY
);
1131 GSocketError
GAddress_INET_SetHostAddress(GAddress
*address
,
1132 unsigned long hostaddr
)
1134 struct in_addr
*addr
;
1136 assert(address
!= NULL
);
1138 CHECK_ADDRESS(address
, INET
, GSOCK_INVADDR
);
1140 addr
= &(((struct sockaddr_in
*)address
->m_addr
)->sin_addr
);
1141 addr
->s_addr
= hostaddr
;
1143 return GSOCK_NOERROR
;
1146 GSocketError
GAddress_INET_SetPortName(GAddress
*address
, const char *port
,
1147 const char *protocol
)
1150 struct sockaddr_in
*addr
;
1152 assert(address
!= NULL
);
1153 CHECK_ADDRESS(address
, INET
, GSOCK_INVADDR
);
1156 address
->m_error
= GSOCK_INVPORT
;
1157 return GSOCK_INVPORT
;
1160 se
= getservbyname((char*)port
, (char*)protocol
);
1162 if (isdigit(port
[0])) {
1165 port_int
= atoi(port
);
1166 addr
= (struct sockaddr_in
*)address
->m_addr
;
1167 addr
->sin_port
= htons(port_int
);
1168 return GSOCK_NOERROR
;
1171 address
->m_error
= GSOCK_INVPORT
;
1172 return GSOCK_INVPORT
;
1175 addr
= (struct sockaddr_in
*)address
->m_addr
;
1176 addr
->sin_port
= se
->s_port
;
1178 return GSOCK_NOERROR
;
1181 GSocketError
GAddress_INET_SetPort(GAddress
*address
, unsigned short port
)
1183 struct sockaddr_in
*addr
;
1185 assert(address
!= NULL
);
1186 CHECK_ADDRESS(address
, INET
, GSOCK_INVADDR
);
1188 addr
= (struct sockaddr_in
*)address
->m_addr
;
1189 addr
->sin_port
= htons(port
);
1191 return GSOCK_NOERROR
;
1194 GSocketError
GAddress_INET_GetHostName(GAddress
*address
, char *hostname
, size_t sbuf
)
1198 struct sockaddr_in
*addr
;
1200 assert(address
!= NULL
);
1201 CHECK_ADDRESS(address
, INET
, GSOCK_INVADDR
);
1203 addr
= (struct sockaddr_in
*)address
->m_addr
;
1204 addr_buf
= (char *)&(addr
->sin_addr
);
1206 he
= gethostbyaddr(addr_buf
, sizeof(addr
->sin_addr
), AF_INET
);
1208 address
->m_error
= GSOCK_NOHOST
;
1209 return GSOCK_NOHOST
;
1212 strncpy(hostname
, he
->h_name
, sbuf
);
1214 return GSOCK_NOERROR
;
1217 unsigned long GAddress_INET_GetHostAddress(GAddress
*address
)
1219 struct sockaddr_in
*addr
;
1221 assert(address
!= NULL
);
1222 CHECK_ADDRESS(address
, INET
, 0);
1224 addr
= (struct sockaddr_in
*)address
->m_addr
;
1226 return addr
->sin_addr
.s_addr
;
1229 unsigned short GAddress_INET_GetPort(GAddress
*address
)
1231 struct sockaddr_in
*addr
;
1233 assert(address
!= NULL
);
1234 CHECK_ADDRESS(address
, INET
, 0);
1236 addr
= (struct sockaddr_in
*)address
->m_addr
;
1237 return ntohs(addr
->sin_port
);
1241 * -------------------------------------------------------------------------
1242 * Unix address family
1243 * -------------------------------------------------------------------------
1246 GSocketError
_GAddress_Init_UNIX(GAddress
*address
)
1248 assert (address
!= NULL
);
1249 address
->m_error
= GSOCK_INVADDR
;
1250 return GSOCK_INVADDR
;
1253 GSocketError
GAddress_UNIX_SetPath(GAddress
*address
, const char *path
)
1255 assert (address
!= NULL
);
1256 address
->m_error
= GSOCK_INVADDR
;
1257 return GSOCK_INVADDR
;
1260 GSocketError
GAddress_UNIX_GetPath(GAddress
*address
, char *path
, size_t sbuf
)
1262 assert (address
!= NULL
);
1263 address
->m_error
= GSOCK_INVADDR
;
1264 return GSOCK_INVADDR
;