<feed xmlns='http://www.w3.org/2005/Atom'>
<title>busybox-w32/networking, branch 1_00_pre4</title>
<subtitle>A mirror of https://github.com/rmyorston/busybox-w32.git
</subtitle>
<id>https://git.lua4.win/busybox-w32/atom?h=1_00_pre4</id>
<link rel='self' href='https://git.lua4.win/busybox-w32/atom?h=1_00_pre4'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/'/>
<updated>2003-12-08T20:21:53+00:00</updated>
<entry>
<title>Stop sending data to the client after the first failure.</title>
<updated>2003-12-08T20:21:53+00:00</updated>
<author>
<name>Glenn L McGrath</name>
<email>bug1@ihug.co.nz</email>
</author>
<published>2003-12-08T20:21:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=9adcf73152e1cb4d537d3ff713abe9d1c51171dd'/>
<id>urn:sha1:9adcf73152e1cb4d537d3ff713abe9d1c51171dd</id>
<content type='text'>
Patch by Joe.C
</content>
</entry>
<entry>
<title>As we no longer use function pointers for read in common archiving code</title>
<updated>2003-11-21T22:24:57+00:00</updated>
<author>
<name>Glenn L McGrath</name>
<email>bug1@ihug.co.nz</email>
</author>
<published>2003-11-21T22:24:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=7ffe1338647d2b890df3ae46e526410b21a90d18'/>
<id>urn:sha1:7ffe1338647d2b890df3ae46e526410b21a90d18</id>
<content type='text'>
archive_xread can be replaced with bb_full_read, and archive_copy_file
with bb_copyfd*
bb_copyfd is split into two functions bb_copyfd_size and bb_copyfd_eof,
they share a common backend.
</content>
</entry>
<entry>
<title>Michael Smith writes:</title>
<updated>2003-11-14T03:04:08+00:00</updated>
<author>
<name>Eric Andersen</name>
<email>andersen@codepoet.org</email>
</author>
<published>2003-11-14T03:04:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=b6e58d2b9a02dfcf313e064408aea1359a4d9763'/>
<id>urn:sha1:b6e58d2b9a02dfcf313e064408aea1359a4d9763</id>
<content type='text'>
I noticed a problem with ifconfig in busybox 0.60.5. The matching code
seems to exist in busybox CVS as well, so I'll paste in the patch that
fixed it.

I was running:
 # ifconfig wan0 1.2.3.4 pointopoint 1.2.3.5 netmask 255.255.255.255

I was seeing the inet addr and P-t-P addr both being set to 1.2.3.5
(the pointopoint address).

wan0      Link encap:Point-Point Protocol
          inet addr:1.2.3.5  P-t-P:1.2.3.5  Mask:255.255.255.255
          UP POINTOPOINT RUNNING NOARP  MTU:1500  Metric:1
          ...

The patch below seems to fix it.
</content>
</entry>
<entry>
<title>Ulrich Marx writes:</title>
<updated>2003-11-14T03:00:04+00:00</updated>
<author>
<name>Eric Andersen</name>
<email>andersen@codepoet.org</email>
</author>
<published>2003-11-14T03:00:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=c16686c1e2e29f99de34a79aed30999fd961ca70'/>
<id>urn:sha1:c16686c1e2e29f99de34a79aed30999fd961ca70</id>
<content type='text'>
hello

i had some trouble with the filedescriptor in udhcp.
Two things happened on my device:
1.) broken or not connected cable (no dhcp-server)
2.) daemonizing (starting with option -b)

i got a filedescriptor fd=0 from function raw_socket,
after daemonizing (daemon call) the fd is closed.
Client can't recieve data's anymore.

i fixed this problem (like pidfile handling):
</content>
</entry>
<entry>
<title>Fix rdate and ftpget/ftpput so they compile with the new xconnect.</title>
<updated>2003-11-03T21:20:18+00:00</updated>
<author>
<name>Eric Andersen</name>
<email>andersen@codepoet.org</email>
</author>
<published>2003-11-03T21:20:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=04d055f4e11469f74bdde38837deefab27edb2e9'/>
<id>urn:sha1:04d055f4e11469f74bdde38837deefab27edb2e9</id>
<content type='text'>
I have checked rdate.  Someone should also check ftpget/ftpput to
be sure they still work.
</content>
</entry>
<entry>
<title>Rework wget, the xconnect interface, and its various clients</title>
<updated>2003-10-31T09:31:46+00:00</updated>
<author>
<name>Eric Andersen</name>
<email>andersen@codepoet.org</email>
</author>
<published>2003-10-31T09:31:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=e6dc439b3a3fa2a64f9e938ac4e5810025c04242'/>
<id>urn:sha1:e6dc439b3a3fa2a64f9e938ac4e5810025c04242</id>
<content type='text'>
in order to fix the problems with round robin DNS reported
by Andrew Flegg:
    http://busybox.net/lists/busybox/2003-October/009579.html

This removes the ipv6 specific xconnect dns lookups.  I do
not see why that would need to be special cased for ipv6 as
was done, but that will just have to be tested.

So IPV6 people -- please test this change!

 -Erik
</content>
</entry>
<entry>
<title>Andreas Mohr writes:</title>
<updated>2003-10-22T09:58:56+00:00</updated>
<author>
<name>Eric Andersen</name>
<email>andersen@codepoet.org</email>
</author>
<published>2003-10-22T09:58:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=88c916bdec7d444198f067529637b4a616ad3efe'/>
<id>urn:sha1:88c916bdec7d444198f067529637b4a616ad3efe</id>
<content type='text'>
the busybox menuconfig triggered my "inacceptable number of spelling mistakes"
upper level, so I decided to make a patch ;-)

I also improved some wording to describe some things in a better way.

Many thanks for an incredible piece of software!

Andreas Mohr, random OSS developer
</content>
</entry>
<entry>
<title>Vodz last_patch_105 without his xargs patch which doenst apply cleanly</title>
<updated>2003-10-06T13:23:06+00:00</updated>
<author>
<name>Glenn L McGrath</name>
<email>bug1@ihug.co.nz</email>
</author>
<published>2003-10-06T13:23:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=9d1a33c6904846b0518d3b260900784aa3c5c754'/>
<id>urn:sha1:9d1a33c6904846b0518d3b260900784aa3c5c754</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Vodz, last_patch_114</title>
<updated>2003-10-03T10:50:56+00:00</updated>
<author>
<name>Glenn L McGrath</name>
<email>bug1@ihug.co.nz</email>
</author>
<published>2003-10-03T10:50:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=1dc0ccafddf9b5f540008b7cabbf3ab1f4f53ee3'/>
<id>urn:sha1:1dc0ccafddf9b5f540008b7cabbf3ab1f4f53ee3</id>
<content type='text'>
- env vars CONTENT_TYPE, CONTENT_LENGTH, HTTPD_REFERER, REMOTE_USER and
AUTH_TYPE(Basic always).
- POST data pipied now (previous version have loading into memory may be
big size data and reducing with hardcoded limit)
- removed $CGI_foo environment variables, else my have rubbish
enviroment if POST data have big binary file
</content>
</entry>
<entry>
<title>Patch by Fillod Stephane, declare variables as static to not clobber</title>
<updated>2003-09-26T00:33:18+00:00</updated>
<author>
<name>Glenn L McGrath</name>
<email>bug1@ihug.co.nz</email>
</author>
<published>2003-09-26T00:33:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=6b0658f5c09812367c0391e32d745ea2f04af8e4'/>
<id>urn:sha1:6b0658f5c09812367c0391e32d745ea2f04af8e4</id>
<content type='text'>
busybox namespace
</content>
</entry>
</feed>
