<feed xmlns='http://www.w3.org/2005/Atom'>
<title>forks/toybox/toys/net, branch 0.8.2</title>
<subtitle>Toybox with POSIX patches from E5ten
</subtitle>
<id>https://git.carbslinux.org/forks/toybox/atom?h=0.8.2</id>
<link rel='self' href='https://git.carbslinux.org/forks/toybox/atom?h=0.8.2'/>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/'/>
<updated>2019-09-23T18:34:08+00:00</updated>
<entry>
<title>Fix ftpget download</title>
<updated>2019-09-23T18:34:08+00:00</updated>
<author>
<name>Denys Nykula</name>
<email>nykula@ukr.net</email>
</author>
<published>2019-09-23T02:15:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=fc345cfc8f9ba6d526b9030c0c3505b068bf5b89'/>
<id>urn:sha1:fc345cfc8f9ba6d526b9030c0c3505b068bf5b89</id>
<content type='text'>
Investigate why downloads always freeze when I call ftpget. Trace it to
a refactor leaving two REST and zero RETR.
</content>
</entry>
<entry>
<title>Factor out AF_UNIX socket openting, use FLAG() macros, xsocket() already</title>
<updated>2019-09-04T23:45:22+00:00</updated>
<author>
<name>Rob Landley</name>
<email>rob@landley.net</email>
</author>
<published>2019-09-04T23:45:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=b8be71f842333bf5ebfed6ee70626b1870d2a7d0'/>
<id>urn:sha1:b8be71f842333bf5ebfed6ee70626b1870d2a7d0</id>
<content type='text'>
does CLOEXEC (should fix macos build).
</content>
</entry>
<entry>
<title>ifconfig: fix for non-root on Android.</title>
<updated>2019-07-18T03:57:17+00:00</updated>
<author>
<name>Elliott Hughes</name>
<email>enh@google.com</email>
</author>
<published>2019-07-17T20:22:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=c86c275068d89c5e106a3b474eff750d2367017c'/>
<id>urn:sha1:c86c275068d89c5e106a3b474eff750d2367017c</id>
<content type='text'>
The change from ioctl to xioctl in
844f0d1aae28c54bbb672f53ba2cda182c572129 broke ifconfig for non-root on
Android. SIOCGIFHWADDR has been protected to prevent device tracking
since Nougat.

Bug: https://issuetracker.google.com/137671590
</content>
</entry>
<entry>
<title>bind/connect cleanup.</title>
<updated>2019-07-12T03:02:12+00:00</updated>
<author>
<name>Elliott Hughes</name>
<email>enh@google.com</email>
</author>
<published>2019-07-08T23:02:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=a57721d14642291696be4ffd5d8bb0915fbe861b'/>
<id>urn:sha1:a57721d14642291696be4ffd5d8bb0915fbe861b</id>
<content type='text'>
Rename the existing xbind/xconnect to xbindany/xconnectany, to make room
for new xbind/xconnect that are more like 'x' versions of the regular
bind and connect. Move explicit bind/connect callers over to
xbind/xconnect.

Of the affected commands, only netcat is actually used by Android. It
was the most recent patch to netcat that made the lack of a more
traditional xbind/xconnect apparent.
</content>
</entry>
<entry>
<title>netcat: Add UNIX domain socket support (-U)</title>
<updated>2019-07-01T20:21:00+00:00</updated>
<author>
<name>Tom Cherry</name>
<email>tomcherry@google.com</email>
</author>
<published>2019-06-28T23:48:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=a55b7d7094072cfdc2f818f63633a89cff8f7cd5'/>
<id>urn:sha1:a55b7d7094072cfdc2f818f63633a89cff8f7cd5</id>
<content type='text'>
Other implementations of netcat support UNIX domain sockets via -U, so
this change adds it to toybox too.

Example usage:
Create ./uds as a UNIX domain socket and listen on it, forwarding
messages to bash:
&gt; nc -U -s ./uds -L /bin/bash

Connect to ./uds as a UNIX domain socket
&gt; nc -U ./uds
</content>
</entry>
<entry>
<title>Improve help consistency.</title>
<updated>2019-03-02T20:12:24+00:00</updated>
<author>
<name>Elliott Hughes</name>
<email>enh@google.com</email>
</author>
<published>2019-03-02T19:21:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=d588ba74439604cf29100aec7cd1da640a5d6fe5'/>
<id>urn:sha1:d588ba74439604cf29100aec7cd1da640a5d6fe5</id>
<content type='text'>
More consistent tense, capitalization, and punctuation. A few commands were
missing an introductory line, so I copied those from the first comment
line.
</content>
</entry>
<entry>
<title>Fix instances of "Usage:" rather than "usage:".</title>
<updated>2019-03-02T20:11:05+00:00</updated>
<author>
<name>Elliott Hughes</name>
<email>enh@google.com</email>
</author>
<published>2019-03-02T19:04:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=b8001d13a68b1b05bff7008fd657af0563890d3f'/>
<id>urn:sha1:b8001d13a68b1b05bff7008fd657af0563890d3f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bumper typo cleanup.</title>
<updated>2019-02-23T14:27:32+00:00</updated>
<author>
<name>Elliott Hughes</name>
<email>enh@google.com</email>
</author>
<published>2019-02-23T03:37:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=42af2e52e771dd7bf8be6fd1119520d492bb4b3f'/>
<id>urn:sha1:42af2e52e771dd7bf8be6fd1119520d492bb4b3f</id>
<content type='text'>
Inspired by some of the small patches that have gone by recently.
Limited to only things found in `generated/help.h`, plus a wider cleanup
for the more common "milisecond" typo.
</content>
</entry>
<entry>
<title>Fix typo in help</title>
<updated>2019-02-21T23:11:36+00:00</updated>
<author>
<name>Kevin van der Kamp</name>
<email>kevin@lens-energie.nl</email>
</author>
<published>2019-02-21T22:27:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=0ecf053572de804c01ed1d3908418cc13b8600cc'/>
<id>urn:sha1:0ecf053572de804c01ed1d3908418cc13b8600cc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Simplify netcat a lot using the net.c upgrades from last commit.</title>
<updated>2019-02-20T13:46:40+00:00</updated>
<author>
<name>Rob Landley</name>
<email>rob@landley.net</email>
</author>
<published>2019-02-20T13:46:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.carbslinux.org/forks/toybox/commit/?id=ca673822484c3ad4a2f309873e649868a8e0fcff'/>
<id>urn:sha1:ca673822484c3ad4a2f309873e649868a8e0fcff</id>
<content type='text'>
</content>
</entry>
</feed>
