lwip-users
[Top][All Lists]
Advanced

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

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


From: Leon Woestenberg
Subject: Re: [lwip-users] Bug in ip.c?????
Date: Mon, 7 Jul 2003 23:04:32 +0200

Hello Kelly,
 
from your email, your fix seems right. To make sure it gets in into the CVS, it is better
to report bugs in Savannah.
 
This way it recorded as a TODO item for the CVS developers. The mailings on the list
tend to be a volatile medium; if its older than a week, it is often forgotten.
 
Thanks!
 
Leon.
----- Original Message -----
From: Kelly Chan
Sent: Monday, July 07, 2003 4:52 PM
Subject: [lwip-users] Bug in ip.c?????

    Florian, can you comment on this?



    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

     << File: ATT1438953.txt >>


_______________________________________________
lwip-users mailing list
address@hidden
http://mail.nongnu.org/mailman/listinfo/lwip-users
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.497 / Virus Database: 296 - Release Date: 7/4/2003

reply via email to

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