aboutsummaryrefslogtreecommitdiff
path: root/module/dial.m
diff options
context:
space:
mode:
authorbhgv <bhgv.empire@gmail.com>2018-03-01 16:54:45 +0200
committerbhgv <bhgv.empire@gmail.com>2018-03-01 16:54:45 +0200
commitb786f20bbab5a59046aa78a2c6c2a11536497202 (patch)
tree0851ecdec889eb9b7ba3751cc04d4f0b474e4a9e /module/dial.m
inferno-os tree was separated from the inferno-os-android (separated from the Android driver)
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 0000000..1871317
--- /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;
+};