summaryrefslogtreecommitdiff
path: root/apps/nshlib/nsh_netcmds.c
Commit message (Collapse)AuthorAgeFilesLines
* apps/netutils/netlib: Add utilities to convert to/from prefix lengths ↵Gregory Nutt2015-02-061-8/+18
| | | | from/to 128-bit network masks. Modify the NSH IPv6 ifconfig command to show the network mask in a more standard, human readable way.
* Elminate some warnings with TCP and UDP are disabledGregory Nutt2015-01-291-1/+3
|
* NSH: A few minor improvements/corrections to the network status presentationGregory Nutt2015-01-241-4/+4
|
* Fix another error in conditional compilation; plus some additional cosmetic ↵Gregory Nutt2015-01-241-1/+1
| | | | changes
* Correct a typo in conditional compilationGregory Nutt2015-01-241-1/+1
|
* Networking: Clean up network status collection and presentation for IPv6Gregory Nutt2015-01-241-33/+110
|
* Networking: Various bugfixes related to IPv6 pingGregory Nutt2015-01-231-1/+1
|
* apps/nshlib: Add the ping6 command to support checking IPv6 networks. NSH ↵Gregory Nutt2015-01-231-77/+242
| | | | logic is complete but still missing some network level support
* apps/nshlib: Add logic to initialize IPv6 addresses, to display IPv6 ↵Gregory Nutt2015-01-191-43/+168
| | | | addresses, and enough IPv6 ifconfig to allocation compilation (logic still not implemented)
* Rename IPv4 netlib functions and files to make room in the namespace for ↵Gregory Nutt2015-01-181-6/+6
| | | | corresponding IPv6 functions and files
* Networking: Replace all references to net_ipaddr_t with either in_addr_t on ↵Gregory Nutt2015-01-161-8/+14
| | | | net_ipv6addr_t. The goal is to support both IPv4 and IPv6 simultaneously. This requires that the two types be distinct and not conditionally typedef'ed to net_ipaddr_t.
* NSH TFTP get command: Wrong file name used for the destination. From LazloGregory Nutt2014-12-101-1/+1
|
* Network: Various fixes for clean compile with both Ethernet and SLIPGregory Nutt2014-11-151-3/+3
|
* Remove CONFIG_DISABLE_CLOCKGregory Nutt2014-08-071-4/+4
|
* NET: emoved all includes of uip.h; added includes of ip.h wherever needed. ↵Gregory Nutt2014-07-041-1/+4
| | | | Tried to fix problems of the now missing sneak inclusions because uip.h was removed. There are probably a few of these that were missed.
* Remove all inclusion of uip.hGregory Nutt2014-07-041-5/+0
|
* NET: Rename functions in apps/netutils/netlib to begin with netlib_ vs uip_Gregory Nutt2014-07-021-11/+11
|
* NET: Rename uiplib/UIPLIB to netlib/NETLIBGregory Nutt2014-07-021-5/+5
|
* NET: Rename uip_ping to icmp_pingGregory Nutt2014-06-301-1/+1
|
* Cosmetic changes, updates to README files, updates to some commentsGregory Nutt2014-06-301-1/+1
|
* NET: Renaming of IP address typesGregory Nutt2014-06-291-1/+1
|
* Rename uip_driver_s net_driver_sGregory Nutt2014-06-271-1/+1
|
* NSH: Networking features modified to handle the case of SLIP networks.Gregory Nutt2014-06-271-1/+16
|
* NET: Move statistcs from uip.h to new netstats.h to remove nasty circular ↵Gregory Nutt2014-06-261-27/+27
| | | | inclusion problem.
* Move the remaining files from include/nuttx/net/uip to include/nuttx/net; ↵Gregory Nutt2014-06-241-2/+2
| | | | Rename *_internal.h header files in net/ to just *.h
* Move include/nuttx/net/uip/uip-arch.h to include/nuttx/net/netdev.hGregory Nutt2014-06-241-1/+1
|
* Make sure that there is one space after forGregory Nutt2014-04-121-1/+1
|
* Make sure that there is one space between if and conditionGregory Nutt2014-04-121-1/+1
|
* The rest of the resolv->DNS client naming change: Renamed directories and ↵Gregory Nutt2014-04-111-2/+2
| | | | header files
* Long needed clean up of DNS resolver for coding style and naming conventionsGregory Nutt2014-04-111-3/+3
|
* Networking: Improved status reporting and new carrier management ↵Gregory Nutt2014-01-211-5/+20
| | | | interfaces. From Max Holtzberg
* Move nuttx/configs/stm3240g-eval/src/up_cxxinitialize.c to ↵Gregory Nutt2013-12-291-9/+15
| | | | apps/platform/stm3240g-eval/
* Eliminate a warning when DHCP is not enabledGregory Nutt2013-09-171-2/+6
|
* Beginnings of definitions for the LPC1788; convert olimex-lpc1766stk to use ↵patacongo2013-01-181-2/+3
| | | | | | kconfig-frontends git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5533 42af7a65-404d-4744-a932-0658087f49c3
* Fixes for l3s, USB composite, nfsmount, apps context build problemspatacongo2012-12-241-0/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5458 42af7a65-404d-4744-a932-0658087f49c3
* Add chip ID funcitions for Shenzhou and Cloudctrl boards; Extened NSH ↵patacongo2012-11-271-14/+79
| | | | | | ifconfig command and improve DHCPC -- All from Darcy Gong git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5393 42af7a65-404d-4744-a932-0658087f49c3
* Add interfaces flags, extend ifconfig, add ifup and ifdown commands (Darcy Gongpatacongo2012-11-041-13/+209
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5308 42af7a65-404d-4744-a932-0658087f49c3
* Ping/DNS fixes (part 2 of 2)patacongo2012-10-201-4/+19
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5236 42af7a65-404d-4744-a932-0658087f49c3
* DNS fixes from Darcy Gong (part 1 of 2)patacongo2012-10-201-2/+13
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5235 42af7a65-404d-4744-a932-0658087f49c3
* Add a PIC32 configuration that supports only a Telnet consolepatacongo2012-03-131-3/+3
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4486 42af7a65-404d-4744-a932-0658087f49c3
* Move all non-standard, NuttX header files into include/nuttx/netpatacongo2012-03-031-4/+4
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4450 42af7a65-404d-4744-a932-0658087f49c3
* NSH now uses the new Telnet daemon and built-in tasks started by NSH can be ↵patacongo2012-02-021-2/+3
| | | | | | used over Telnet git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4361 42af7a65-404d-4744-a932-0658087f49c3
* More FTP bug fixespatacongo2011-06-051-3/+11
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3669 42af7a65-404d-4744-a932-0658087f49c3
* Add E1000 PIC NIC driver from Yu Qiangpatacongo2011-05-211-2/+42
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3638 42af7a65-404d-4744-a932-0658087f49c3
* Additional changes for clean NSH buildpatacongo2011-03-191-5/+5
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3400 42af7a65-404d-4744-a932-0658087f49c3
* Update documentation, change CONFIG_EXAMPLES_NSH to CONFIG_NSHpatacongo2011-03-181-8/+8
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3394 42af7a65-404d-4744-a932-0658087f49c3
* Move NSH to apps/ as librarypatacongo2011-03-181-0/+815
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3393 42af7a65-404d-4744-a932-0658087f49c3