Add RTL8139 receive and network daemon with stub handler

This commit is contained in:
Mark
2020-03-19 16:41:05 +02:00
parent b40d495e4e
commit 86eb7c9282
5 changed files with 182 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#pragma once
#include "sys/types.h"
int net_receive(/* TODO: replace with struct netdev * */ void *ctx, const void *data, size_t len);
int net_daemon_start(void);