Skip to content
This repository was archived by the owner on May 22, 2023. It is now read-only.

Commit 06d8b64

Browse files
committed
Allow accessing server file descriptor
ref #128
1 parent 31c5946 commit 06d8b64

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
package body Gneiss.Packet.Server.Linux with
3+
SPARK_Mode
4+
is
5+
6+
function Get_Fd (Session : Server_Session) return Integer
7+
is
8+
begin
9+
return Integer (Session.Fd);
10+
end Get_Fd;
11+
12+
end Gneiss.Packet.Server.Linux;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
generic
3+
package Gneiss.Packet.Server.Linux with
4+
SPARK_Mode
5+
is
6+
7+
function Get_Fd (Session : Server_Session) return Integer with
8+
Pre => Initialized (Session),
9+
Post => Get_Fd'Result > -1;
10+
11+
end Gneiss.Packet.Server.Linux;

0 commit comments

Comments
 (0)