diff options
author | Marvin Borner | 2020-11-29 18:43:31 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-29 18:43:31 +0100 |
commit | cb9816c78f25ecc8736cd97c11c839a4c18bcf76 (patch) | |
tree | 8bacb607dc7eae0a6bb8691a759325a2b3a41270 /kernel | |
parent | 727fd72e6a9b8a0ce44af1cf8648981092300ee7 (diff) |
Fixed some things
I'm currently working on a huge commit, but it doesn't work..
WAIT AND SEE!
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/features/net.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/kernel/features/net.c b/kernel/features/net.c index 80c1164..26bdc0f 100644 --- a/kernel/features/net.c +++ b/kernel/features/net.c @@ -536,8 +536,6 @@ static void tcp_handle_packet(struct tcp_packet *packet, u32 dst, int len) tcp_send_packet(socket, TCP_FLAG_ACK, NULL, 0); - proc_from_pid(socket->pid)->state = PROC_RUNNING; - socket->state = S_CLOSED; tcp->state = 0; return; @@ -571,8 +569,6 @@ static void udp_handle_packet(struct udp_packet *packet) sdata->data = NULL; } list_add(socket->packets, sdata); - proc_from_pid(socket->pid)->state = PROC_RUNNING; - /* printf("Waking up %d\n", socket->pid); */ } static void ip_handle_packet(struct ip_packet *packet, int len) |