diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-11-15 22:11:47 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-11-15 22:11:47 +0100 |
commit | 30c5c3404bec22f78cd1334f750876f5ab47ccd8 (patch) | |
tree | 59b52c03be309b49b6f13785f2f1fc6f10f00dc0 /sys/src/9/ip | |
parent | 3579757291db68f8e17a376476454996b7961bd7 (diff) |
ip/pktmedium: no mintu, no maclen... thi is ip packets
Diffstat (limited to 'sys/src/9/ip')
-rw-r--r-- | sys/src/9/ip/pktmedium.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/src/9/ip/pktmedium.c b/sys/src/9/ip/pktmedium.c index 4a6fe87a6..99b8802eb 100644 --- a/sys/src/9/ip/pktmedium.c +++ b/sys/src/9/ip/pktmedium.c @@ -17,9 +17,9 @@ Medium pktmedium = { .name= "pkt", .hsize= 0, -.mintu= 40, +.mintu= 0, .maxtu= 4*1024, -.maclen= 6, +.maclen= 0, .bind= pktbind, .unbind= pktunbind, .bwrite= pktbwrite, |