<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel">
    <title>gmane.network.lwip.devel</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9228"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9227"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9226"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9225"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9224"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9223"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9222"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9221"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9220"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9219"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9218"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9217"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9216"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9215"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9214"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9213"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9212"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9211"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9210"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.network.lwip.devel/9209"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9228">
    <title>Re: SMTP base64 patch, HTTPD question.</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9228</link>
    <description>&lt;pre&gt;After working through it this patch appears to solve the problem. It might
not be a good way of doing things but it works. I'm not getting any out of
memory errors if writing more then the buf (which was stalling SYN ACK for
2-3 seconds) and the speed of replying to a GET has improved, reducing the
chance of a retry.

--- C:/Users/bwhitten/Desktop/contrib-1.4.1/apps/httpserver_raw/httpd.c
Mon Dec 17 19:07:22 2012
+++ C:/Users/bwhitten/Desktop/contrib-1.4.1/apps/httpserver_raw/httpd -
Copy.c    Thu May 23 12:56:32 2013
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1197,7 +1197,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
    * the buffer contents looking for SSI tags. */
   while((ssi-&amp;gt;parse_left) &amp;amp;&amp;amp; (err == ERR_OK)) {
     /* &amp;lt; at &amp;gt;todo: somewhere in this loop, 'len' should grow again... */
-    if (len == 0) {
+    if (tcp_sndbuf(pcb) == 0) {
       return data_to_send;
     }
     switch(ssi-&amp;gt;tag_state) {
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1344,15 +1344,18 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
             if (ssi-&amp;gt;tag_end &amp;gt; hs-&amp;gt;file) {
               /* How much of the data can we send? */
 #if LWIP_HTTPD_SSI_INCLUDE_TAG
-              if(len &amp;gt; ssi-&amp;gt;tag_e&lt;/pre&gt;</description>
    <dc:creator>Ben Whitten</dc:creator>
    <dc:date>2013-05-23T12:02:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9227">
    <title>SMTP base64 patch, HTTPD question.</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9227</link>
    <description>&lt;pre&gt;Hey,

This generates working userpass auth strings. Tested with GMX, Lavabit,
Aol, Plusnet, and Yahoo. With various username/password sizes.

I am also hunting a bug in the httpserver_raw, when including SSI tags; it
finds the tag, sends the preceding data, then the tag. But then the sending
length is never reset so it sends the remaining page at the tag length.
As a result serving a webpage takes 2-3 seconds if its a 4K file with an
SSI tag in the &amp;lt;title&amp;gt;.
The problem seems to be around :1351 where I think len is being mistaken
for something else, where its actually the length of the previously sent
section (last tag length). Could someone more familiar with the code take a
look too?

Thanks,
Ben Whitten

--- C:/Users/bwhitten/Desktop/contrib-1.4.1/apps/smtp/smtp.c    Mon Dec 17
19:03:22 2012
+++ C:/Users/bwhitten/Desktop/contrib-1.4.1/apps/smtp/smtp - Copy.c    Thu
May 23 08:51:16 2013
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -804,8 +804,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
   s8_t j;
   size_t target_idx = 0;
   size_t longer = 3 - (source_len % 3);
-  size_t source_len_b64&lt;/pre&gt;</description>
    <dc:creator>Ben Whitten</dc:creator>
    <dc:date>2013-05-23T08:22:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9226">
    <title>[task #12586] Release 1.5.0 beta1</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9226</link>
    <description>&lt;pre&gt;Follow-up Comment #3, task #12586 (project lwip):

Hi, we still don't have any implementation of 6LowPAN and RPL for LwIP so I
would stongly advise against adding this task for 1.5.0-Beta1. The main goal
now is to have a stable release and this is a new feature (vs. bug fix).

(PS: at the moment I run 6LowPAN/RPL in a parallel uIP stack)

    _______________________________________________________

Reply to this item at:

  &amp;lt;http://savannah.nongnu.org/task/?12586&amp;gt;

_______________________________________________
  Message sent via/by Savannah
  http://savannah.nongnu.org/
&lt;/pre&gt;</description>
    <dc:creator>Ivan Delamer</dc:creator>
    <dc:date>2013-05-14T17:16:04</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9225">
    <title>[task #12586] Release 1.5.0 beta1</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9225</link>
    <description>&lt;pre&gt;Follow-up Comment #2, task #12586 (project lwip):

Hi Ivan

   whether or not to support the 6LoWPAN and RPL? I'm looking forward to
version 1.5 includes support for this, ^-^

   Best regards!

    _______________________________________________________

Reply to this item at:

  &amp;lt;http://savannah.nongnu.org/task/?12586&amp;gt;

_______________________________________________
  Message sent via/by Savannah
  http://savannah.nongnu.org/
&lt;/pre&gt;</description>
    <dc:creator>hanhui</dc:creator>
    <dc:date>2013-05-14T07:45:04</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9224">
    <title>pbuf_header for PBUF_REF/ROM in lwip-1.3.1</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9224</link>
    <description>&lt;pre&gt;We' just moving our comms protocol to run over UDP from RS232 using STM32F1 and F2 chips.  The current ST ethernetif_input port allocates a PBUF_POOL and memcpy's the data from the DMA buffer in to it before passing it on to netif-&amp;gt;input to process.

We've got quite a bit of RAM and not much traffic and are looking to get away from the memcpy.  I've changed this to allocate a PBUF_REF and then set the payload to point to the DMA buffer directly to save copying as the processing of these packets is very quick.

This works for UDP traffic but fails for ICMP (echo requests).  The reason is that LWIP does a couple of pbuf_header calls with -ve values while processing the header but when ICMP wants to send the reply (in icml.c line 143), it readjusts the header backwards using pbuf_header with a positive value.

This doesn't work for PBUF_REF/ROM types as it can't safely check for underflow.  The underflow for PBUF_RAM/POOL is checked for by comparing the new payload pointer to the pbuf pointer + sizeof(pbuf) whi&lt;/pre&gt;</description>
    <dc:creator>rh_maillist&lt; at &gt;mac.com</dc:creator>
    <dc:date>2013-05-10T09:21:18</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9223">
    <title>[bug #38886] in6_addr error</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9223</link>
    <description>&lt;pre&gt;Follow-up Comment #2, bug #38886 (project lwip):

#define s6_addr un.u8_addr is right from IEEE Std 1003.1, 2004 Edition.

&amp;lt;http://pubs.opengroup.org/onlinepubs/009696899/basedefs/netinet/in.h.html&amp;gt;

The &amp;lt;netinet/in.h&amp;gt; header shall define the in6_addr structure that contains at
least the following member:

uint8_t s6_addr[16];

so, #define s6_addr un.u8_addr is right!



    _______________________________________________________

Reply to this item at:

  &amp;lt;http://savannah.nongnu.org/bugs/?38886&amp;gt;

_______________________________________________
  Message sent via/by Savannah
  http://savannah.nongnu.org/
&lt;/pre&gt;</description>
    <dc:creator>hanhui</dc:creator>
    <dc:date>2013-05-08T06:17:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9222">
    <title>[bug #38886] in6_addr error</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9222</link>
    <description>&lt;pre&gt;Follow-up Comment #1, bug #38886 (project lwip):

Thanks for reporting. In bug #37585 you suggested 

#define s6_addr8 un.u8_addr

which one should it be?


    _______________________________________________________

Reply to this item at:

  &amp;lt;http://savannah.nongnu.org/bugs/?38886&amp;gt;

_______________________________________________
  Message sent via/by Savannah
  http://savannah.nongnu.org/
&lt;/pre&gt;</description>
    <dc:creator>Ivan Delamer</dc:creator>
    <dc:date>2013-05-07T18:25:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9221">
    <title>FW:</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9221</link>
    <description>&lt;pre&gt;http://grandkobayashi.sakura.ne.jp/5bxcuo.php
&lt;/pre&gt;</description>
    <dc:creator>Ivan Delamer</dc:creator>
    <dc:date>2013-04-10T16:34:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9220">
    <title>[task #12586] Release 1.5.0 beta1</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9220</link>
    <description>&lt;pre&gt;Follow-up Comment #1, task #12586 (project lwip):

I'm going to start working on fixing reported bugs and merging all patches
related to IPv6.

I'm not set up to use the win32/linux ports or contrib apps, so maybe someone
else can take a look at that?

    _______________________________________________________

Reply to this item at:

  &amp;lt;http://savannah.nongnu.org/task/?12586&amp;gt;

_______________________________________________
  Message sent via/by Savannah
  http://savannah.nongnu.org/
&lt;/pre&gt;</description>
    <dc:creator>Ivan Delamer</dc:creator>
    <dc:date>2013-05-07T17:28:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9219">
    <title>[patch #7858] Patch for window scaling support forlwip-1.4.0</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9219</link>
    <description>&lt;pre&gt;Additional Item Attachment, patch #7858 (project lwip):

File name: window_scaling_1_4_1.patch     Size:28 KB


    _______________________________________________________

Reply to this item at:

  &amp;lt;http://savannah.nongnu.org/patch/?7858&amp;gt;

_______________________________________________
  Message sent via/by Savannah
  http://savannah.nongnu.org/
&lt;/pre&gt;</description>
    <dc:creator>Alexander Boettcher</dc:creator>
    <dc:date>2013-05-06T08:30:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9218">
    <title>[bug #38886] in6_addr error</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9218</link>
    <description>&lt;pre&gt;URL:
  &amp;lt;http://savannah.nongnu.org/bugs/?38886&amp;gt;

                 Summary: in6_addr error
                 Project: lwIP - A Lightweight TCP/IP stack
            Submitted by: hanhui03
            Submitted on: Sat May  4 13:27:55 2013
                Category: IPv6
                Severity: 3 - Normal
              Item Group: Change Request
                  Status: None
                 Privacy: Public
             Assigned to: None
             Open/Closed: Open
         Discussion Lock: Any
         Planned Release: 
            lwIP version: CVS Head

    _______________________________________________________

Details:

struct in6_addr { 
union { 
u8_t u8_addr[16]; 
u32_t u32_addr[4]; 
} un; 
#define s6_addr un.u32_addr 
}; 
should be: 
#define s6_addr un.u8_addr 




    _______________________________________________________

Reply to this item at:

  &amp;lt;http://savannah.nongnu.org/bugs/?38886&amp;gt;

_______________________________________________
  Message sent via/by Savannah
  http://savannah.nongnu.org/&lt;/pre&gt;</description>
    <dc:creator>hanhui</dc:creator>
    <dc:date>2013-05-04T13:27:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9217">
    <title>[task #12600] struct in6_addr error</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9217</link>
    <description>&lt;pre&gt;URL:
  &amp;lt;http://savannah.nongnu.org/task/?12600&amp;gt;

                 Summary: struct in6_addr error
                 Project: lwIP - A Lightweight TCP/IP stack
            Submitted by: hanhui03
            Submitted on: Sat May  4 13:27:05 2013
                Category: IPv6
         Should Start On: Sat May  4 00:00:00 2013
   Should be Finished on: Sat May  4 00:00:00 2013
                Priority: 5 - Normal
                  Status: None
                 Privacy: Public
        Percent Complete: 0%
             Assigned to: None
             Open/Closed: Open
         Discussion Lock: Any
         Planned Release: None
                  Effort: 0.00

    _______________________________________________________

Details:

struct in6_addr {
  union {
    u8_t  u8_addr[16];
    u32_t u32_addr[4];
  } un;
#define s6_addr  un.u32_addr
};

should be:

#define s6_addr  un.u8_addr








    _______________________________________________________

Reply to this item at:

  &amp;lt;http://savannah.nongnu.org/task/?12600&amp;gt;
&lt;/pre&gt;</description>
    <dc:creator>hanhui</dc:creator>
    <dc:date>2013-05-04T13:27:07</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9216">
    <title>[bug #38853] connect() use a wrong errno</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9216</link>
    <description>&lt;pre&gt;Follow-up Comment #1, bug #38853 (project lwip):

Add tcp_connect() do not use LWIP_ERROR(...) to check pcb state!

    _______________________________________________________

Reply to this item at:

  &amp;lt;http://savannah.nongnu.org/bugs/?38853&amp;gt;

_______________________________________________
  Message sent via/by Savannah
  http://savannah.nongnu.org/
&lt;/pre&gt;</description>
    <dc:creator>hanhui</dc:creator>
    <dc:date>2013-04-29T15:56:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9215">
    <title>[bug #38853] connect() use a wrong errno</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9215</link>
    <description>&lt;pre&gt;URL:
  &amp;lt;http://savannah.nongnu.org/bugs/?38853&amp;gt;

                 Summary: connect() use a wrong errno
                 Project: lwIP - A Lightweight TCP/IP stack
            Submitted by: hanhui03
            Submitted on: Mon Apr 29 15:51:35 2013
                Category: sockets/netconn
                Severity: 3 - Normal
              Item Group: Faulty Behaviour
                  Status: None
                 Privacy: Public
             Assigned to: None
             Open/Closed: Open
         Discussion Lock: Any
         Planned Release: 
            lwIP version: git head

    _______________________________________________________

Details:

EALREADY : A connection request is already in progress for the specified
socket.

EISCONN: The specified socket is connection-mode and is already connected.

EALREADY is NOT same as EISCONN, but lwip is only use "ERR_ISCONN" as
EALREADY.

Some software(for example Qt/Embedded) whill check EISCONN to determine
whether the connection is successful!

I suggest th&lt;/pre&gt;</description>
    <dc:creator>hanhui</dc:creator>
    <dc:date>2013-04-29T15:51:36</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9214">
    <title>[patch #8037] LWIP server fails if we connect multipleclients</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9214</link>
    <description>&lt;pre&gt;URL:
  &amp;lt;http://savannah.nongnu.org/patch/?8037&amp;gt;

                 Summary: LWIP server fails if we connect multiple clients
                 Project: lwIP - A Lightweight TCP/IP stack
            Submitted by: krantip
            Submitted on: Mon 29 Apr 2013 05:04:17 AM GMT
                Category: None
                Priority: 7 - High
                  Status: None
                 Privacy: Public
             Assigned to: None
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
         Planned Release: None

    _______________________________________________________

Details:

I am using LWIP stack version 4.0.My requirement is,connect minimim 50 clients
to lwip server using single thread.
Single client server is working fine,but if i connect 2-3 clients,then after
some time,I found , tcp_write out of memory error,because of TCP_SND_QUEUELEN
gets over.
I get below error,when it shows tcp-write error.
LWIP_DEBUGF(TCP_OUTPUT_DEBUG | 3, ("tcp_write: too long queue %"U&lt;/pre&gt;</description>
    <dc:creator>Krantip</dc:creator>
    <dc:date>2013-04-29T05:04:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9213">
    <title>[patch #8034] autoip: added autoip_remove_struct</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9213</link>
    <description>&lt;pre&gt;URL:
  &amp;lt;http://savannah.nongnu.org/patch/?8034&amp;gt;

                 Summary: autoip: added autoip_remove_struct
                 Project: lwIP - A Lightweight TCP/IP stack
            Submitted by: marathon96
            Submitted on: Sat 27 Apr 2013 07:23:52 PM GMT
                Category: IPv4
                Priority: 5 - Normal
                  Status: None
                 Privacy: Public
             Assigned to: None
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
         Planned Release: None

    _______________________________________________________

Details:

From: Grant Erickson &amp;lt;marathon96&amp;lt; at &amp;gt;gmail.com&amp;gt;
Date: Sat, 27 Apr 2013 12:20:29 -0700
Subject: [PATCH] autoip: add autoip_remove_struct

Added previously-missing autoip_remove_struct as a companion to
autoip_set_struct and to parallel dhcp_{set,remove}_struct.

---
 src/include/ipv4/lwip/autoip.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/include/ipv4/lwip/autoip.h b/src/include/ipv4/lwip/&lt;/pre&gt;</description>
    <dc:creator>Grant Erickson</dc:creator>
    <dc:date>2013-04-27T19:23:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9212">
    <title>[bug #37353] [ppp-new] save thread ppp_input_thread()handle</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9212</link>
    <description>&lt;pre&gt;Update of bug #37353 (project lwip):

                  Status:                    None =&amp;gt; Wont Fix               
             Open/Closed:                    Open =&amp;gt; Closed                 

    _______________________________________________________

Follow-up Comment #2:

PPP_INPROC_OWNTHREAD feature removed in ppp-new, which make this bug not
relevant anymore.

Git commit 25f9f55878f008113bc1f4a0068d4827ed4595b9.

    _______________________________________________________

Reply to this item at:

  &amp;lt;http://savannah.nongnu.org/bugs/?37353&amp;gt;

_______________________________________________
  Message sent via/by Savannah
  http://savannah.nongnu.org/
&lt;/pre&gt;</description>
    <dc:creator>Sylvain Rochet</dc:creator>
    <dc:date>2013-04-26T20:05:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9211">
    <title>[bug #37278] [ppp-new] pppos reopen error!</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9211</link>
    <description>&lt;pre&gt;Update of bug #37278 (project lwip):

             Open/Closed:                    Open =&amp;gt; Closed                 


    _______________________________________________________

Reply to this item at:

  &amp;lt;http://savannah.nongnu.org/bugs/?37278&amp;gt;

_______________________________________________
  Message sent via/by Savannah
  http://savannah.nongnu.org/
&lt;/pre&gt;</description>
    <dc:creator>Sylvain Rochet</dc:creator>
    <dc:date>2013-04-26T20:05:04</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9210">
    <title>[bug #37278] [ppp-new] pppos reopen error!</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9210</link>
    <description>&lt;pre&gt;Update of bug #37278 (project lwip):

                  Status:             In Progress =&amp;gt; Wont Fix               

    _______________________________________________________

Follow-up Comment #2:

PPP_INPROC_OWNTHREAD feature removed in ppp-new, which make this bug not
relevant anymore.

Git commit 25f9f55878f008113bc1f4a0068d4827ed4595b9.

    _______________________________________________________

Reply to this item at:

  &amp;lt;http://savannah.nongnu.org/bugs/?37278&amp;gt;

_______________________________________________
  Message sent via/by Savannah
  http://savannah.nongnu.org/
&lt;/pre&gt;</description>
    <dc:creator>Sylvain Rochet</dc:creator>
    <dc:date>2013-04-26T20:04:46</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9209">
    <title>[patch #8030] Correct spelling of received</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9209</link>
    <description>&lt;pre&gt;URL:
  &amp;lt;http://savannah.nongnu.org/patch/?8030&amp;gt;

                 Summary: Correct spelling of received
                 Project: lwIP - A Lightweight TCP/IP stack
            Submitted by: morepork
            Submitted on: Thu 25 Apr 2013 09:48:14 PM GMT
                Category: None
                Priority: 3 - Low
                  Status: None
                 Privacy: Public
             Assigned to: None
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
         Planned Release: None

    _______________________________________________________

Details:

diff --git a/src/core/tcp.c b/src/core/tcp.c
index a0cbb15..8690cd2 100644
--- a/src/core/tcp.c
+++ b/src/core/tcp.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -667,7 +667,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; tcp_recved(struct tcp_pcb *pcb, u16_t len)
     tcp_output(pcb);
   }
 
-  LWIP_DEBUGF(TCP_DEBUG, ("tcp_recved: recveived %"U16_F" bytes, wnd %"U16_F"
(%"U16_F").\n",
+  LWIP_DEBUGF(TCP_DEBUG, ("tcp_recved: received %"U16_F" bytes, wnd %"U16_F"
(%"U16_F").\n",
          len, pc&lt;/pre&gt;</description>
    <dc:creator>Liam</dc:creator>
    <dc:date>2013-04-25T21:48:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.network.lwip.devel/9208">
    <title>[bug #38748] Allow NETIF_MAX_HWADDR_LEN to beOverridden by lwipopts.h</title>
    <link>http://permalink.gmane.org/gmane.network.lwip.devel/9208</link>
    <description>&lt;pre&gt;Follow-up Comment #4, bug #38748 (project lwip):

At present, the netif is the canonical structure for getting network interface
information, including IP addresses, MTU and link layer address. So, from that
perspective, yes.

    _______________________________________________________

Reply to this item at:

  &amp;lt;http://savannah.nongnu.org/bugs/?38748&amp;gt;

_______________________________________________
  Message sent via/by Savannah
  http://savannah.nongnu.org/
&lt;/pre&gt;</description>
    <dc:creator>Grant Erickson</dc:creator>
    <dc:date>2013-04-24T21:52:49</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.network.lwip.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.network.lwip.devel</link>
  </textinput>
</rdf:RDF>
