aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
diff options
context:
space:
mode:
authorMarvin Borner2020-11-18 13:49:19 +0100
committerMarvin Borner2020-11-18 13:49:19 +0100
commit431c88102153b8b41a15a1105e291ecf161c030e (patch)
tree63063babd988284871db7c27dbb96025d00f2444 /apps/init.c
parentcc85ffd8a1c4703051655c7f5727157e7e1ce96a (diff)
Started libnet
Diffstat (limited to 'apps/init.c')
-rw-r--r--apps/init.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/init.c b/apps/init.c
index 9d64388..234853f 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -1,7 +1,9 @@
// MIT License, Copyright (c) 2020 Marvin Borner
#include <def.h>
+#include <net.h>
#include <print.h>
+#include <str.h>
#include <sys.h>
int main(int argc, char **argv)
@@ -13,5 +15,13 @@ int main(int argc, char **argv)
int wm = exec("/bin/wm", "wm", argv[1], NULL);
int exec = exec("/bin/exec", "test", NULL);
+ /* #define http_req "GET / HTTP/1.1\r\nHost: google.de\r\n\r\n" */
+ /* struct socket *socket = net_open(S_TCP); */
+ /* if (socket && net_connect(socket, ip(91, 89, 253, 227), 80)) */
+ /* net_send(socket, strdup(http_req), strlen(http_req)); */
+ /* else */
+ /* print("Couldn't connect!\n"); */
+ dns_request("google", "de");
+
return wm + exec;
}