summaryrefslogtreecommitdiff
path: root/module/dial.m
diff options
context:
space:
mode:
Diffstat (limited to 'module/dial.m')
-rw-r--r--module/dial.m34
1 files changed, 34 insertions, 0 deletions
diff --git a/module/dial.m b/module/dial.m
new file mode 100644
index 00000000..1871317a
--- /dev/null
+++ b/module/dial.m
@@ -0,0 +1,34 @@
+Dial: module
+{
+ PATH: con "/dis/lib/dial.dis";
+
+ Connection: adt
+ {
+ dfd: ref Sys->FD;
+ cfd: ref Sys->FD;
+ dir: string;
+ };
+
+ Conninfo: adt
+ {
+ dir: string;
+ root: string;
+ spec: string;
+ lsys: string;
+ lserv: string;
+ rsys: string;
+ rserv: string;
+ laddr: string;
+ raddr: string;
+ };
+
+ announce: fn(addr: string): ref Connection;
+ dial: fn(addr, local: string): ref Connection;
+ listen: fn(c: ref Connection): ref Connection;
+ accept: fn(c: ref Connection): ref Sys->FD;
+ reject: fn(c: ref Connection, why: string): int;
+# parse: fn(addr: string): (string, string, string);
+
+ netmkaddr: fn(addr, net, svc: string): string;
+ netinfo: fn(c: ref Connection): ref Conninfo;
+};