]> git.mxchange.org Git - simgear.git/blob - simgear/io/raw_socket.hxx
6ae529f285e9f5259c0c57a4701beacb6c1c54e0
[simgear.git] / simgear / io / raw_socket.hxx
1 /*
2      simgear::Socket, adapted from PLIB netSocket by James Turner
3      Copyright (C) 2010  James Turner
4      
5      PLIB - A Suite of Portable Game Libraries
6      Copyright (C) 1998,2002  Steve Baker
7  
8      This library is free software; you can redistribute it and/or
9      modify it under the terms of the GNU Library General Public
10      License as published by the Free Software Foundation; either
11      version 2 of the License, or (at your option) any later version.
12  
13      This library is distributed in the hope that it will be useful,
14      but WITHOUT ANY WARRANTY; without even the implied warranty of
15      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16      Library General Public License for more details.
17  
18      You should have received a copy of the GNU Library General Public
19      License along with this library; if not, write to the Free Software
20      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21 */
22
23 #ifndef SG_IO_SOCKET_HXX
24 #define SG_IO_SOCKET_HXX
25
26 //#include <errno.h>
27
28 //#if defined(__APPLE__) || defined(__FreeBSD__)
29 //#  include <netinet/in.h>
30 //#endif
31
32 struct sockaddr_in;
33 struct sockaddr;
34      
35 namespace simgear
36 {
37
38 /*
39  * Socket address, internet style.
40  */
41 class IPAddress
42 {
43     struct sockaddr_in* addr;
44 public:
45   IPAddress () : addr(0) {}
46   IPAddress ( const char* host, int port ) ;
47   ~IPAddress();
48   
49   void set ( const char* host, int port ) ;
50   const char* getHost () const ;
51   unsigned int getPort() const ;
52   unsigned int getIP () const ;
53   unsigned int getFamily () const ;
54   static const char* getLocalHost () ;
55
56   bool getBroadcast () const ;
57   
58   unsigned int getAddrLen() const;
59   sockaddr* getAddr() const;
60 };
61
62
63 /*
64  * Socket type
65  */
66 class Socket
67 {
68   int handle ;
69
70 public:
71   
72   Socket () ;
73   virtual ~Socket () ;
74
75   static int initSockets();
76
77   int getHandle () const { return handle; }
78   void setHandle (int handle) ;
79   
80   bool  open        ( bool stream=true ) ;
81   void  close       ( void ) ;
82   int   bind        ( const char* host, int port ) ;
83   int   listen      ( int backlog ) ;
84   int   accept      ( IPAddress* addr ) ;
85   int   connect     ( const char* host, int port ) ;
86   int   connect     ( IPAddress* addr ) ;
87   int   send        ( const void * buffer, int size, int flags = 0 ) ;
88   int   sendto      ( const void * buffer, int size, int flags, const IPAddress* to ) ;
89   int   recv        ( void * buffer, int size, int flags = 0 ) ;
90   int   recvfrom    ( void * buffer, int size, int flags, IPAddress* from ) ;
91
92   void setBlocking ( bool blocking ) ;
93   void setBroadcast ( bool broadcast ) ;
94
95   static bool isNonBlockingError () ;
96   
97   static int select ( Socket** reads, Socket** writes, int timeout ) ;
98 } ;
99
100 //const char* netFormat ( const char* fmt, ... ) ;
101
102 } // of namespace simgear
103
104 #endif // SG_IO_SOCKET_HXX
105