]> Joshua Wise's Git repositories - netwatch.git/blobdiff - net/net.c
Lolol, boxing and unboxing?
[netwatch.git] / net / net.c
index 7fa7c467164715abcb3c279eeafea4d6ed67bda1..598ea757b45e218fcf8e3c0c0c5dd36cce081745 100644 (file)
--- a/net/net.c
+++ b/net/net.c
@@ -96,19 +96,16 @@ void eth_poll()
 static err_t _transmit(struct netif *netif, struct pbuf *p)
 {
        struct nic *nic = netif->state;
-       struct pbuf *q;
-       unsigned char pkt[1600];
-       unsigned int len = 0;
 
-       for(q = p; q != NULL; q = q->next)
+/*     for(q = p; q != NULL; q = q->next)
        {
                memcpy(pkt + len, q->payload, q->len);
                len += q->len;
-       }
+       }*/
 
-       outputf("NIC: Transmit packet: %d bytes", len);
+       outputf("NIC: Transmit packet");
 
-       nic->transmit(len, pkt);
+       nic->transmit(p);
 
        LINK_STATS_INC(link.xmit);
 
This page took 0.023722 seconds and 4 git commands to generate.