diff options
author | Marvin Borner | 2020-11-18 17:53:31 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-18 17:53:31 +0100 |
commit | a5a04ef3de6ad3f81d37a04fede23eb3b4b348b1 (patch) | |
tree | 555496762aaa15e810bf3038bd2d444d68931d65 /apps/init.c | |
parent | 431c88102153b8b41a15a1105e291ecf161c030e (diff) |
Added browser and many networking things
Diffstat (limited to 'apps/init.c')
-rw-r--r-- | apps/init.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/apps/init.c b/apps/init.c index 234853f..3cb4527 100644 --- a/apps/init.c +++ b/apps/init.c @@ -15,13 +15,5 @@ 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; } |