Re: [lwip-users] scribblewiki down

2008-09-25 Thread Marek Matej
I like to see lwIP logo too :) Your hummingbird is nice, but I miss compactness and simplicity in it. But I am not graphic designer, just trying to imagine :) 2008/9/25 Pettinato, Jim [EMAIL PROTECTED] Sample of 1st pass rough draft of lwIP logo graphic attached... Don't know if it'll make

Re: [lwip-users] TCP Checksum errors.

2008-09-19 Thread Marek Matej
Hi. I had similar problem (browser response). It was solved by modifying header of http page, by adding two newline characters (CR+LF) at the end of http header. Good luck! Marek 2008/9/19 Nick Thomas [EMAIL PROTECTED] Often the checksum is added by the hardware and Wireshark never sees

Re: [lwip-users] problem in using raw api for avr32uc3ax application

2008-09-03 Thread Marek Matej
Hi Jini, I am working on project with lwip 1.3.0 and system with no OS layer. Therefore RAW API is ised. In ethernetif.c, I have implemented : --ethernetif_init(); which is used for init any of netif --mac_init(); which is intended for initiating network hardware --mac_input(); for reading

Re: Re: [lwip-users] problem in using raw api for avr32uc3ax application

2008-09-03 Thread Marek Matej
,sys_thread_new and so on in this function and I really do not know how to deal it if an os not used. The similar problem also exist in other functions. 在2008-09-03,Marek Matej [EMAIL PROTECTED] 写道: Hi Jini, I am working on project with lwip 1.3.0 and system with no OS layer. Therefore RAW API is ised

Re: R: [lwip-users] httpd question

2008-08-20 Thread Marek Matej
generated page by NVU editor works as well. So it was more http protocol probem rather then lwip problem. Thank You again Jifl ! Marek Matej 2008/8/19 Jonathan Larmour [EMAIL PROTECTED]: Marek Matej wrote: Ok, connection seems to be estabilished correctly in both cases. Differences start after GET

Re: R: [lwip-users] httpd question

2008-08-20 Thread Marek Matej
it was only problem of bogus TAB. Anyway, http server is not my main interrest. It is the simplest application where I only need to test my api (which I described at begining). Marek 2008/8/20 Jonathan Larmour [EMAIL PROTECTED]: Marek Matej wrote: Thank You Jifl, Your suggestion was very

[lwip-users] httpd question

2008-08-19 Thread Marek Matej
Hi all I am developing port of lwip 1.3.0 for renesas SH family of procesors. System we are running is based on C++ and is single thread only with no OS features support. Therefore I combine protothreads (used in uIP stack) to implement network application in single function which makes

Re: R: [lwip-users] httpd question

2008-08-19 Thread Marek Matej
Ok, connection seems to be estabilished correctly in both cases. Differences start after GET is received. Attached are pcap files of FF and IE communication. Please take a look, if You see some fundamental differences. Marek 2008/8/19 Ceresoli Luca [EMAIL PROTECTED]: Marek Matej wrote: My