shithub: mez

Download patch

ref: 79f1c00150f1647e054b9d88570e63e48426ce90
parent: a5b4b6ab90ca8b3a1b3ab93afc87fd5ba9a31b4d
author: spew <spew@palas>
date: Sat Jan 25 18:37:56 EST 2025

progress

--- a/mez.c
+++ b/mez.c
@@ -1,19 +1,19 @@
 #include <u.h>
 #include <libc.h>
+#include <thread.h>
 #include <auth.h>
 #include <mp.h>
 #include <libsec.h>
+#include <draw.h>
+#include <mouse.h>
+#include <frame.h>
+#include "mez.h"
 
-typedef struct App App;
-struct App {
-	char *host, *user, *passwd;
-};
-
 void
 usage(void)
 {
 	fprint(2, "usage: %s [-u user] host\n", argv0);
-	exits("usage");
+	threadexits("usage");
 }
 
 void
@@ -20,7 +20,7 @@
 error(char *s)
 {
 	fprint(2, "%s: error: %s: %r\n", argv0, s);
-	exits(s);
+	threadexits(s);
 }
 
 void*
@@ -117,8 +117,24 @@
 }
 
 void
-main(int argc, char **argv)
+readnetproc(void *a)
 {
+	Net *net;
+	char *in;
+
+	net = a;
+	for(;;){
+		in = rmsg(net->fd);
+		if(strcmp(in, "PING") == 0){
+			wmsg(net->fd, "PONG%s", in+4);
+			continue;
+		}
+	}
+}
+
+void
+threadmain(int argc, char **argv)
+{
 	App app;
 	UserPasswd *up;
 	int fd;
@@ -144,5 +160,5 @@
 	}
 	free(up);
 	close(fd);
-	exits(0);
+	threadexits(0);
 }
--- a/mkfile
+++ b/mkfile
@@ -1,10 +1,9 @@
 </$objtype/mkfile
 
-TARG=mez
+TARG=mez guitest
 BIN=/$objtype/bin
-OFILES=\
-	mez.$O
 
-HFILES=
+HFILES=\
+	mez.h
 
-</sys/src/cmd/mkone
+</sys/src/cmd/mkmany