diff seobeo/seobeo.h @ 1:adcfad6e86fb

Updated naming and separated out some logic within seobeo.
author June Park <parkjune1995@gmail.com>
date Wed, 24 Sep 2025 09:11:20 -0700
parents
children 2758f5527d2b
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/seobeo/seobeo.h	Wed Sep 24 09:11:20 2025 -0700
@@ -0,0 +1,27 @@
+#ifndef SEOBEO_SERVER_H
+#define SEOBEO_SERVER_H
+
+// --- Seobeo --- //
+// Library for creating sockets, binding sockets, and listening to a sockets.
+// Sending and unpacking bytes of data. 
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <errno.h>
+#include <string.h>
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <netdb.h>
+#include <arpa/inet.h>
+#include <sys/wait.h>
+#include <signal.h>
+#include <fcntl.h>
+
+#include "dowa/dowa.h"
+
+
+extern int Seobeo_CreateSocket(int32 stream, char* port, int32 backlog);
+
+#endif