[Toybox] [PATCH] IPv6 routing table for netstat

2016-10-31 Thread Lipi C. H. Lee
I've added the reading of IPv6 routing table is not yet implemented in netstat. I added new function, not merged in display_route() because IPv4 routing table's format is different from IPv6's one. And net-tools is referred for its flag symbol. 0001-IPv6-routing-table-for-netstat.patch

[Toybox] [FIX] build error fix in pending/sulogin.c

2016-09-25 Thread Lipi C. H. Lee
The sulogin.c has had link error. So xopen_stdin() has changed to open_stdio(). ___ Toybox mailing list Toybox@lists.landley.net http://lists.landley.net/listinfo.cgi/toybox-landley.net

[Toybox] [PATCH] wget: change the option 'f' to 'O' for saving file

2016-06-23 Thread Lipi C. H. Lee
This patch change the option 'f' to 'O' for saving a file like wget or curl. wget.patch Description: Binary data ___ Toybox mailing list Toybox@lists.landley.net http://lists.landley.net/listinfo.cgi/toybox-landley.net

[Toybox] [PATCH] wget: support HTTPS using openssl

2016-03-23 Thread Lipi C. H. Lee
wget supports HTTPS with openssl and is changed option '-f' to '-o' just like curl and uses xconnect(). And one change happens in /lib. A parameter is added to xpopen_both() in lib/xwrap.c to decide whether child process pass stderr to stdout or not. If openssl's stderr and downloaded stream is

Re: [Toybox] Implement wget

2016-02-29 Thread Lipi C. H. Lee
whole string operations is unsafe in the code. Could you kindly tell me any test case it is unsafe? It will be very helpful to me. On Sat, Feb 27, 2016 at 8:28 AM, Rich Felker <dal...@libc.org> wrote: > On Thu, Feb 25, 2016 at 05:28:20PM +0900, Lipi C. H. Lee wrote: > > Thanks for your

Re: [Toybox] Implement wget

2016-02-25 Thread Lipi C. H. Lee
, Felix Janda <felix.ja...@posteo.de> wrote: > Lipi C. H. Lee wrote: > > implement simple 'wget' and port name can be specified in URL if default > > port 80 is not used. > > It may be added to toys/pending directory. > > Thanks for your submission! > > S

[Toybox] Implement wget

2016-02-19 Thread Lipi C. H. Lee
implement simple 'wget' and port name can be specified in URL if default port 80 is not used. It may be added to toys/pending directory. /* wget.c - Simple downloader to get the resource file in HTTP server * * Copyright 2016 Lipi C.H. Lee * USE_WGET(NEWTOY(wget, "f:",

[Toybox] [toybox] cleanup in 'netstat.c'

2016-01-21 Thread Lipi C. H. Lee
Hi, Rob. I cleaned up the code in 'netstat.c' as belows. - Adjust to 80 columns - remove a useless function(strchr_nul), variable, type casting and compile warnings(fgets) - clean up netstat command option condition - change useless double pointer to single point and dynamic memory

[Toybox] Fix build error after 'make allyesconfig'

2016-01-11 Thread Lipi C. H. Lee
Hi, Rob. Some source files in 'pending' directory have link error when xfork() is called after 'make allyesconfig'. Lipi fix_build_bootchard.patch Description: Binary data fix_build_crontab.patch Description: Binary data fix_build_openvt.patch Description: Binary data