1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
5 -- G N A T . S O C K E T S . T H I N --
9 -- Copyright (C) 2002-2013, AdaCore --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 -- This package provides a target dependent thin interface to the sockets
33 -- layer for use by the GNAT.Sockets package (g-socket.ads). This package
34 -- should not be directly with'ed by an applications program.
36 -- This is the version for VxWorks
41 with GNAT
.Sockets
.Thin_Common
;
46 package GNAT
.Sockets
.Thin
is
50 package C
renames Interfaces
.C
;
52 use type System
.CRTL
.ssize_t
;
54 function Socket_Errno
return Integer renames GNAT
.OS_Lib
.Errno
;
55 -- Returns last socket error number
57 procedure Set_Socket_Errno
(Errno
: Integer) renames GNAT
.OS_Lib
.Set_Errno
;
58 -- Set last socket error number
60 function Socket_Error_Message
(Errno
: Integer) return String;
61 -- Returns the error message string for the error number Errno. If Errno is
62 -- not known, returns "Unknown system error".
64 function Host_Errno
return Integer;
65 pragma Import
(C
, Host_Errno
, "__gnat_get_h_errno");
66 -- Returns last host error number
68 package Host_Error_Messages
is
70 function Host_Error_Message
(H_Errno
: Integer) return String;
71 -- Returns the error message string for the host error number H_Errno.
72 -- If H_Errno is not known, returns "Unknown system error".
74 end Host_Error_Messages
;
76 --------------------------------
77 -- Standard library functions --
78 --------------------------------
82 Addr
: System
.Address
;
83 Addrlen
: not null access C
.int
) return C
.int
;
87 Name
: System
.Address
;
88 Namelen
: C
.int
) return C
.int
;
91 (Fd
: C
.int
) return C
.int
;
95 Name
: System
.Address
;
96 Namelen
: C
.int
) return C
.int
;
98 function C_Gethostname
99 (Name
: System
.Address
;
100 Namelen
: C
.int
) return C
.int
;
102 function C_Getpeername
104 Name
: System
.Address
;
105 Namelen
: not null access C
.int
) return C
.int
;
107 function C_Getsockname
109 Name
: System
.Address
;
110 Namelen
: not null access C
.int
) return C
.int
;
112 function C_Getsockopt
116 Optval
: System
.Address
;
117 Optlen
: not null access C
.int
) return C
.int
;
119 function Socket_Ioctl
121 Req
: SOSC
.IOCTL_Req_T
;
122 Arg
: access C
.int
) return C
.int
;
126 Backlog
: C
.int
) return C
.int
;
130 Msg
: System
.Address
;
132 Flags
: C
.int
) return C
.int
;
136 Msg
: System
.Address
;
139 From
: System
.Address
;
140 Fromlen
: not null access C
.int
) return C
.int
;
144 Msg
: System
.Address
;
145 Flags
: C
.int
) return System
.CRTL
.ssize_t
;
149 Readfds
: access Fd_Set
;
150 Writefds
: access Fd_Set
;
151 Exceptfds
: access Fd_Set
;
152 Timeout
: Timeval_Access
) return C
.int
;
156 Msg
: System
.Address
;
157 Flags
: C
.int
) return System
.CRTL
.ssize_t
;
161 Msg
: System
.Address
;
165 Tolen
: C
.int
) return C
.int
;
167 function C_Setsockopt
171 Optval
: System
.Address
;
172 Optlen
: C
.int
) return C
.int
;
176 How
: C
.int
) return C
.int
;
181 Protocol
: C
.int
) return C
.int
;
184 (Command
: System
.Address
) return C
.int
;
186 -------------------------------------------------------
187 -- Signalling file descriptors for selector abortion --
188 -------------------------------------------------------
190 package Signalling_Fds
is
192 function Create
(Fds
: not null access Fd_Pair
) return C
.int
;
193 pragma Convention
(C
, Create
);
194 -- Create a pair of connected descriptors suitable for use with C_Select
195 -- (used for signalling in Selector objects).
197 function Read
(Rsig
: C
.int
) return C
.int
;
198 pragma Convention
(C
, Read
);
199 -- Read one byte of data from rsig, the read end of a pair of signalling
200 -- fds created by Create_Signalling_Fds.
202 function Write
(Wsig
: C
.int
) return C
.int
;
203 pragma Convention
(C
, Write
);
204 -- Write one byte of data to wsig, the write end of a pair of signalling
205 -- fds created by Create_Signalling_Fds.
207 procedure Close
(Sig
: C
.int
);
208 pragma Convention
(C
, Close
);
209 -- Close one end of a pair of signalling fds (ignoring any error)
213 procedure Initialize
;
217 pragma Import
(C
, C_Bind
, "bind");
218 pragma Import
(C
, C_Close
, "close");
219 pragma Import
(C
, C_Gethostname
, "gethostname");
220 pragma Import
(C
, C_Getpeername
, "getpeername");
221 pragma Import
(C
, C_Getsockname
, "getsockname");
222 pragma Import
(C
, C_Getsockopt
, "getsockopt");
223 pragma Import
(C
, C_Listen
, "listen");
224 pragma Import
(C
, C_Select
, "select");
225 pragma Import
(C
, C_Setsockopt
, "setsockopt");
226 pragma Import
(C
, C_Shutdown
, "shutdown");
227 pragma Import
(C
, C_System
, "system");
228 end GNAT
.Sockets
.Thin
;