shithub: mez

Download patch

ref: 34148b407ec9d5516c7f07958434fe409bb17fcd
parent: c0f88502eeb6f5895783497f8a92467a36d851bf
author: Ben Purcell <spew@cbza.org>
date: Tue Jan 21 22:02:06 EST 2025

Finish first connection

--- a/mez.c
+++ b/mez.c
@@ -69,11 +69,10 @@
 main(int argc, char **argv)
 {
 	TLSconn conn;
-	int fd;
-	long bytes;
+	int fd, bytes, i;
 	UserPasswd *up;
 	uchar buf[512];
-	char *user, *host, b64[512];
+	char *user, *host, b64[512], in[8192];
 
 	user = getenv("user");
 	ARGBEGIN{
@@ -111,5 +110,23 @@
 	print(rtmsg(fd, "AUTHENTICATE %s\r\n", b64));
 	//:domain.dom 903 * :SASL authentication successful
 
+	print(rtmsg(fd, "CAP END"));
+	//:tlaloc.cbza.org 001 spew :Welcome to soju, spew, etc.
+	for(i = 0; i < 4; ++i){
+		bytes = read(fd, in, sizeof(in));
+		in[bytes] = '\0';
+		print(in);
+	}
+
+	print(rtmsg(fd, "BOUNCER LISTNETWORKS"));
+	//BOUNCER NETWORK 1 etc.
+	for(i = 0; i < 3; ++i){
+		bytes = read(fd, in, sizeof(in));
+		in[bytes] = '\0';
+		print(in);
+	}
+
+	// So then I need to make a fresh connection and do the same then and then do BOUNCER BIND before I do CAP END (which will end registration)
+	close(fd);
 	exits(0);
 }