lwip-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lwip-users] Bug in ip.c?????


From: Kelly Chan
Subject: [lwip-users] Bug in ip.c?????
Date: Sat, 5 Jul 2003 12:04:20 -0600

Since Lwip supports IP_PROTO_UDPLITE, shall we include "IP_PROTO_UDPLITE" in
our ip codes such as:

instead of
switch(IPH_PROTO(iphdr)) 
{
  case IP_PROTO_UDP:
    udp_input(p, inp);
    break;
  .......

the codes shall look like this.
switch(IPH_PROTO(iphdr)) 
{
  case IP_PROTO_UDP:
  case IP_PROTO_UDPLITE:
    udp_input(p, inp);
    break;
  .......

Or there're reason behind we actually don't support IP_PROTO_UDPLITE. (I
doubt it as the upd_input did process IP_PROTO_UDPLITE message.......

cheers

Kelly 


<<attachment: winmail.dat>>


reply via email to

[Prev in Thread] Current Thread [Next in Thread]