]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/ada/libgnat/g-socthi__mingw.ads
[Ada] Bump copyright year
[thirdparty/gcc.git] / gcc / ada / libgnat / g-socthi__mingw.ads
CommitLineData
6cbd1b6f
RK
1------------------------------------------------------------------------------
2-- --
3-- GNAT COMPILER COMPONENTS --
4-- --
5-- G N A T . S O C K E T S . T H I N --
6-- --
7-- S p e c --
8-- --
4b490c1e 9-- Copyright (C) 2001-2020, AdaCore --
6cbd1b6f
RK
10-- --
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- --
607d0635 13-- ware Foundation; either version 3, or (at your option) any later ver- --
6cbd1b6f
RK
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 --
607d0635
AC
16-- or FITNESS FOR A PARTICULAR PURPOSE. --
17-- --
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. --
21-- --
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/>. --
6cbd1b6f 26-- --
fbf5a39b
AC
27-- GNAT was originally developed by the GNAT team at New York University. --
28-- Extensive contributions were provided by Ada Core Technologies Inc. --
6cbd1b6f
RK
29-- --
30------------------------------------------------------------------------------
31
fbf5a39b
AC
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.
35
36-- This version is for NT
6cbd1b6f 37
47752af2 38with Interfaces.C;
6cbd1b6f 39
f983388f 40with GNAT.Sockets.Thin_Common;
6cbd1b6f
RK
41
42with System;
b29def53 43with System.CRTL;
6cbd1b6f
RK
44
45package GNAT.Sockets.Thin is
46
f983388f 47 use Thin_Common;
6cbd1b6f 48
f983388f 49 package C renames Interfaces.C;
6cbd1b6f
RK
50
51 function Socket_Errno return Integer;
a2cb348e 52 -- Returns last socket error number
6cbd1b6f 53
fbf5a39b 54 procedure Set_Socket_Errno (Errno : Integer);
a2cb348e 55 -- Set last socket error number
fbf5a39b 56
3e5b1f32 57 function Socket_Error_Message (Errno : Integer) return String;
3d3bf932 58 -- Returns the error message string for the error number Errno. If Errno is
4491f0ae 59 -- not known, returns "Unknown system error".
6cbd1b6f 60
3e1fd98f
TQ
61 function Host_Errno return Integer;
62 pragma Import (C, Host_Errno, "__gnat_get_h_errno");
63 -- Returns last host error number
64
4491f0ae
AC
65 package Host_Error_Messages is
66
47752af2 67 function Host_Error_Message (H_Errno : Integer) return String;
4491f0ae
AC
68 -- Returns the error message string for the host error number H_Errno.
69 -- If H_Errno is not known, returns "Unknown system error".
70
71 end Host_Error_Messages;
72
4491f0ae
AC
73 --------------------------------
74 -- Standard library functions --
75 --------------------------------
76
6cbd1b6f
RK
77 function C_Accept
78 (S : C.int;
79 Addr : System.Address;
3d3bf932 80 Addrlen : not null access C.int) return C.int;
6cbd1b6f
RK
81
82 function C_Bind
83 (S : C.int;
84 Name : System.Address;
a397db96 85 Namelen : C.int) return C.int;
6cbd1b6f
RK
86
87 function C_Close
a397db96 88 (Fd : C.int) return C.int;
6cbd1b6f
RK
89
90 function C_Connect
91 (S : C.int;
92 Name : System.Address;
a397db96 93 Namelen : C.int) return C.int;
6cbd1b6f 94
6cbd1b6f
RK
95 function C_Gethostname
96 (Name : System.Address;
a397db96 97 Namelen : C.int) return C.int;
6cbd1b6f
RK
98
99 function C_Getpeername
100 (S : C.int;
101 Name : System.Address;
3d3bf932 102 Namelen : not null access C.int) return C.int;
6cbd1b6f
RK
103
104 function C_Getsockname
105 (S : C.int;
106 Name : System.Address;
3d3bf932 107 Namelen : not null access C.int) return C.int;
6cbd1b6f
RK
108
109 function C_Getsockopt
110 (S : C.int;
111 Level : C.int;
112 Optname : C.int;
113 Optval : System.Address;
3d3bf932 114 Optlen : not null access C.int) return C.int;
6cbd1b6f 115
f26d5cd3
AC
116 function Socket_Ioctl
117 (S : C.int;
6db566c3 118 Req : SOSC.IOCTL_Req_T;
f26d5cd3 119 Arg : access C.int) return C.int;
6cbd1b6f
RK
120
121 function C_Listen
a397db96
AC
122 (S : C.int;
123 Backlog : C.int) return C.int;
6cbd1b6f 124
6cbd1b6f
RK
125 function C_Recv
126 (S : C.int;
3d3bf932 127 Msg : System.Address;
6cbd1b6f 128 Len : C.int;
a397db96 129 Flags : C.int) return C.int;
6cbd1b6f
RK
130
131 function C_Recvfrom
132 (S : C.int;
3d3bf932 133 Msg : System.Address;
6cbd1b6f
RK
134 Len : C.int;
135 Flags : C.int;
3743d5bd 136 From : System.Address;
3d3bf932 137 Fromlen : not null access C.int) return C.int;
6cbd1b6f 138
ac72c9c5
AC
139 function C_Recvmsg
140 (S : C.int;
141 Msg : System.Address;
b29def53 142 Flags : C.int) return System.CRTL.ssize_t;
ac72c9c5 143
6cbd1b6f
RK
144 function C_Select
145 (Nfds : C.int;
3dd9959c
AC
146 Readfds : access Fd_Set;
147 Writefds : access Fd_Set;
148 Exceptfds : access Fd_Set;
a397db96 149 Timeout : Timeval_Access) return C.int;
6cbd1b6f 150
ac72c9c5
AC
151 function C_Sendmsg
152 (S : C.int;
153 Msg : System.Address;
b29def53 154 Flags : C.int) return System.CRTL.ssize_t;
ac72c9c5 155
6cbd1b6f
RK
156 function C_Sendto
157 (S : C.int;
158 Msg : System.Address;
159 Len : C.int;
160 Flags : C.int;
3743d5bd 161 To : System.Address;
a397db96 162 Tolen : C.int) return C.int;
6cbd1b6f
RK
163
164 function C_Setsockopt
165 (S : C.int;
166 Level : C.int;
167 Optname : C.int;
168 Optval : System.Address;
a397db96 169 Optlen : C.int) return C.int;
6cbd1b6f
RK
170
171 function C_Shutdown
3d3bf932
TQ
172 (S : C.int;
173 How : C.int) return C.int;
6cbd1b6f
RK
174
175 function C_Socket
176 (Domain : C.int;
177 Typ : C.int;
a397db96 178 Protocol : C.int) return C.int;
6cbd1b6f 179
fd0d7b4e
DA
180 Default_Socket_Pair_Family : constant := SOSC.AF_INET;
181 -- Windows has not socketpair system call, and C_Socketpair below is
182 -- implemented on loopback connected network sockets.
183
184 function C_Socketpair
185 (Domain : C.int;
186 Typ : C.int;
187 Protocol : C.int;
188 Fds : not null access Fd_Pair) return C.int;
189 -- Creates pair of connected sockets
190
6cbd1b6f 191 function C_System
a397db96 192 (Command : System.Address) return C.int;
6cbd1b6f 193
6cbd1b6f 194 function WSAStartup
3a336262 195 (WS_Version : Interfaces.C.unsigned_short;
a397db96 196 WSADataAddress : System.Address) return Interfaces.C.int;
6cbd1b6f 197
4491f0ae
AC
198 -------------------------------------------------------
199 -- Signalling file descriptors for selector abortion --
200 -------------------------------------------------------
201
3d3bf932
TQ
202 package Signalling_Fds is
203
204 function Create (Fds : not null access Fd_Pair) return C.int;
205 pragma Convention (C, Create);
206 -- Create a pair of connected descriptors suitable for use with C_Select
207 -- (used for signalling in Selector objects).
208
209 function Read (Rsig : C.int) return C.int;
210 pragma Convention (C, Read);
211 -- Read one byte of data from rsig, the read end of a pair of signalling
212 -- fds created by Create_Signalling_Fds.
213
214 function Write (Wsig : C.int) return C.int;
215 pragma Convention (C, Write);
216 -- Write one byte of data to wsig, the write end of a pair of signalling
217 -- fds created by Create_Signalling_Fds.
218
4491f0ae
AC
219 procedure Close (Sig : C.int);
220 pragma Convention (C, Close);
221 -- Close one end of a pair of signalling fds (ignoring any error)
222
3d3bf932
TQ
223 end Signalling_Fds;
224
fbf5a39b 225 procedure WSACleanup;
6cbd1b6f 226
4491f0ae 227 procedure Initialize;
6cbd1b6f 228 procedure Finalize;
6cbd1b6f
RK
229
230private
6cbd1b6f
RK
231 pragma Import (Stdcall, C_Accept, "accept");
232 pragma Import (Stdcall, C_Bind, "bind");
233 pragma Import (Stdcall, C_Close, "closesocket");
6cbd1b6f
RK
234 pragma Import (Stdcall, C_Gethostname, "gethostname");
235 pragma Import (Stdcall, C_Getpeername, "getpeername");
236 pragma Import (Stdcall, C_Getsockname, "getsockname");
237 pragma Import (Stdcall, C_Getsockopt, "getsockopt");
6cbd1b6f 238 pragma Import (Stdcall, C_Listen, "listen");
6cbd1b6f
RK
239 pragma Import (Stdcall, C_Recv, "recv");
240 pragma Import (Stdcall, C_Recvfrom, "recvfrom");
6cbd1b6f
RK
241 pragma Import (Stdcall, C_Sendto, "sendto");
242 pragma Import (Stdcall, C_Setsockopt, "setsockopt");
243 pragma Import (Stdcall, C_Shutdown, "shutdown");
244 pragma Import (Stdcall, C_Socket, "socket");
6cbd1b6f 245 pragma Import (C, C_System, "_system");
6cbd1b6f 246 pragma Import (Stdcall, Socket_Errno, "WSAGetLastError");
fbf5a39b 247 pragma Import (Stdcall, Set_Socket_Errno, "WSASetLastError");
6cbd1b6f
RK
248 pragma Import (Stdcall, WSAStartup, "WSAStartup");
249 pragma Import (Stdcall, WSACleanup, "WSACleanup");
250
251end GNAT.Sockets.Thin;