aboutsummaryrefslogtreecommitdiff
path: root/kernel/inc
diff options
context:
space:
mode:
authorMarvin Borner2020-11-24 12:15:01 +0100
committerMarvin Borner2020-11-24 12:15:01 +0100
commit39f3538f7ee56dab414d62201235f8427b4a9592 (patch)
treef58a946b8db1e753bfa9d1123d39ba52f06b0770 /kernel/inc
parent8babf8b26e23ffdd8094c810295061effde153dd (diff)
Added userspace-based network timeout
The network in my whole city is down right now, so I've done some error catching using timeouts etc without the kernel blocking everything. Not having internet is exhausting though :(
Diffstat (limited to 'kernel/inc')
-rw-r--r--kernel/inc/net.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/inc/net.h b/kernel/inc/net.h
index 2ad3d65..2852328 100644
--- a/kernel/inc/net.h
+++ b/kernel/inc/net.h
@@ -161,7 +161,6 @@ int net_close(struct socket *socket);
int net_connect(struct socket *socket, u32 ip_addr, u16 dst_port);
void net_send(struct socket *socket, void *data, u32 len);
int net_receive(struct socket *socket, void *buf, u32 len);
-int net_data_available(struct socket *socket);
int net_installed(void);
void net_install(void);