X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/42125f27f3d2a77966f2015c545a88c4113368ef..8ed5907015b127d1312c13216a8e4875c962da8e:/net/net.h diff --git a/net/net.h b/net/net.h index 01505ab..02c544e 100644 --- a/net/net.h +++ b/net/net.h @@ -1,11 +1,22 @@ -#ifndef _3C905_H -#define _3C905_H +/* net.h + * Top-level network clue code headers + * NetWatch system management mode administration console + * + * Copyright (c) 2008 Jacob Potter and Joshua Wise. All rights reserved. + * This program is free software; you can redistribute and/or modify it under + * the terms found in the file LICENSE in the root of this source tree. + * + */ + +#ifndef _NET_H +#define _NET_H #include "etherboot-compat.h" +#include extern void eth_init(); +extern void eth_recv(struct nic *nic, struct pbuf *p); extern void eth_poll(); - -extern struct nic nic; +extern int eth_register(struct nic *nic); #endif