X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/bec09bd18a879a22688c68febaff8c65da41f752..db9fad13f192963786c7ac90d305467ac00bd145:/net/net.c diff --git a/net/net.c b/net/net.c index 0b57321..1462f09 100644 --- a/net/net.c +++ b/net/net.c @@ -1,3 +1,13 @@ +/* net.c + * Top-level network glue code + * 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. + * + */ + #include #include #include @@ -83,7 +93,7 @@ static err_t _transmit(struct netif *netif, struct pbuf *p) // outputf("NIC: Transmit packet"); - nic->transmit(p); + nic->transmit(nic, p); LINK_STATS_INC(link.xmit);