mirror of
https://github.com/vishapoberon/vipak.git
synced 2026-04-05 20:42:26 +00:00
unscpec
This commit is contained in:
parent
7352dba55b
commit
2e4b60252a
2 changed files with 18 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ CONST
|
||||||
SockDccp* = 6;
|
SockDccp* = 6;
|
||||||
SockPacket* = 10;
|
SockPacket* = 10;
|
||||||
|
|
||||||
AfUnscec* = 0; (* Unspecified. *)
|
AfUnspec* = 0; (* Unspecified. *)
|
||||||
AfLocal* = 1; (* Local to host (pipes and file-domain). *)
|
AfLocal* = 1; (* Local to host (pipes and file-domain). *)
|
||||||
AfUnix* = 1; (* POSIX name for PF_LOCAL. *)
|
AfUnix* = 1; (* POSIX name for PF_LOCAL. *)
|
||||||
AfFile* = 1; (* Another non-standard name for PF_LOCAL. *)
|
AfFile* = 1; (* Another non-standard name for PF_LOCAL. *)
|
||||||
|
|
|
||||||
17
test.Mod
17
test.Mod
|
|
@ -1,5 +1,22 @@
|
||||||
MODULE test;
|
MODULE test;
|
||||||
|
|
||||||
|
VAR
|
||||||
|
|
||||||
|
botOwner, nick, serv, chan: ARRAY 32 OF CHAR;
|
||||||
|
|
||||||
|
PROCEDURE testBot;
|
||||||
|
|
||||||
|
BEGIN
|
||||||
|
|
||||||
|
|
||||||
|
END testBot;
|
||||||
|
|
||||||
|
BEGIN
|
||||||
|
botOwner := "norayr";
|
||||||
|
nick := "norayr";
|
||||||
|
serv := "irc.freenode.net";
|
||||||
|
chan := "#oberon";
|
||||||
|
|
||||||
|
testBot;
|
||||||
|
|
||||||
END test.
|
END test.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue