summaryrefslogtreecommitdiff
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
...
* Update ChangeLogsGregory Nutt2015-01-241-0/+1
|
* Networking: Clean up network status collection and presentation for IPv6Gregory Nutt2015-01-241-33/+110
|
* Oops missed one reference to DEBUG_STACKGregory Nutt2015-01-241-6/+6
|
* Networking: IPv4 and IPv6 work together. This fixes a bug necessary to ↵Gregory Nutt2015-01-231-1/+6
| | | | accomplish that as well as cleaning up a couple of other issues
* Update README fileGregory Nutt2015-01-231-1/+10
|
* Networking: Various bugfixes related to IPv6 pingGregory Nutt2015-01-231-1/+1
|
* Update ChangeLogGregory Nutt2015-01-231-0/+2
|
* apps/nshlib: Add the ping6 command to support checking IPv6 networks. NSH ↵Gregory Nutt2015-01-234-84/+265
| | | | logic is complete but still missing some network level support
* Add to .depend dependencies to eliminate an error at dependency generation timeGregory Nutt2015-01-232-2/+2
|
* Add config.h to .gitignoreGregory Nutt2015-01-231-0/+1
|
* Update ChangeLogGregory Nutt2015-01-221-0/+2
|
* apps/examples/udp: The UDP test example has been extend to support IPv6 ↵Gregory Nutt2015-01-229-44/+577
| | | | domain sockets
* Update ChangeLogsGregory Nutt2015-01-221-0/+5
|
* Networking: Correct the value returned by accept() in the case where ↵Gregory Nutt2015-01-221-1/+1
| | | | net_lockingwait() is called. It was returning -1 and losing the errno value. Noted by Rony Xln
* apps/netutils/telnetd: Add protection when CONFIG_SCHED_HAVE_PARENT is ↵Gregory Nutt2015-01-221-11/+61
| | | | enabled: Call sigaction with SA_NOCLDWAIT so that exit status is not retained (no zombies) and block receipt of SIGCHLD so that accept is not awakened by a signal. Iff accept() is awakened by a signal, do not do anything crazy like exit. Most from Rony Xln
* Merge remote-tracking branch 'origin/master' into ipv6Gregory Nutt2015-01-211-5/+5
|\
| * Should fix some errors reported by TravisGregory Nutt2015-01-201-5/+5
| |
* | apps/examples/nettest: Fix address initializaiton, HTONS not HTNOLGregory Nutt2015-01-211-8/+8
|/
* Update ChangeLogGregory Nutt2015-01-201-1/+4
|
* Correct name of fields in struct sockaddr_in6: sin6_port and sin6_family, ↵Gregory Nutt2015-01-207-59/+54
| | | | not sin_port and sin_family
* apps/examples/nettest: Update test so that it can be used to test IPv6 TCP ↵Gregory Nutt2015-01-208-24/+545
| | | | sockets
* Fix defaults for IPv6 netmaskGregory Nutt2015-01-201-17/+17
|
* Update ChangeLogGregory Nutt2015-01-191-0/+3
|
* apps/netutils/netlib: All IOCTLs must use a valid address family -- even if ↵Gregory Nutt2015-01-195-10/+62
| | | | the address family does not matter such as when getting the MAC address or the network flags
* NSH library: Disable put and get commends of TFTP client is not enabled; ↵Gregory Nutt2015-01-191-0/+16
| | | | disable wget command if web client is not enabled
* Networking: Fix some problems with debug is enabled; fix a warningGregory Nutt2015-01-191-0/+2
|
* apps/nshlib: Add logic to initialize IPv6 addresses, to display IPv6 ↵Gregory Nutt2015-01-192-43/+170
| | | | addresses, and enough IPv6 ifconfig to allocation compilation (logic still not implemented)
* Update ChangeLogGregory Nutt2015-01-193-8/+350
|
* Update ChangeLogGregory Nutt2015-01-181-0/+2
|
* apps/netutils/netlib: Add new library functions to manipulate IPv6 addressesGregory Nutt2015-01-1813-99/+482
|
* Rename IPv4 netlib functions and files to make room in the namespace for ↵Gregory Nutt2015-01-1826-115/+134
| | | | corresponding IPv6 functions and files
* Refresh configuration/update some misnamed conditional compilationGregory Nutt2015-01-181-3/+19
|
* Update ChangeLogGregory Nutt2015-01-181-0/+2
|
* apps/netutils/dnsclient: Can select to be either IPv4 or IPv6, but not both ↵Gregory Nutt2015-01-184-15/+31
| | | | (IPv6 still does not compile)
* apps/examples/udp/Kconfig: Default setting is backwardGregory Nutt2015-01-172-3/+3
|
* Networking: Replace all references to the macros net_ipaddr_copy, ↵Gregory Nutt2015-01-161-1/+1
| | | | net_ipaddr_hdrcopy, net_ipaddr_cmp, net_ipaddr_hdrcmp, and net_ipaddr_maskcmp with the appropriate IPv4 or IPv6 version of the macro (such as net_ipv4addr_copy). The goal is to support both IPv4 and IPv6 simultaneously. This requires that the macros be distinct and not conditionally defined to one on or the other.
* Networking: Replace all references to net_ipaddr_t with either in_addr_t on ↵Gregory Nutt2015-01-163-14/+21
| | | | 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.
* Remove the px4-v2_upstream configuration. Moved to misc/Obsoleted/configs.Gregory Nutt2015-01-141-3/+3
| | | | This is not the official configuration for the PX4 board and has led to confusion by NuttX users. The board configuration also requires some ongoing maintenance and customization to support ongoing PX4 testing and evaluation. It is best retained the PX4 repositories where it can be properly maintained and not in the upstream NuttX repository.
* Add comments to Micro Python MakefileGregory Nutt2015-01-141-2/+15
|
* Update READMEGregory Nutt2015-01-141-0/+26
|
* Update READMEGregory Nutt2015-01-131-0/+7
|
* Micro python: Remove typedef of wint_tGregory Nutt2015-01-131-1/+0
|
* Tiva Timer: Timer test must attach a timer handler or the timer is stopped ↵Gregory Nutt2015-01-131-0/+38
| | | | at the first interrupt
* Update READMEGregory Nutt2015-01-131-1/+6
|
* Micro Python uses CROSS_COMPILE, not CROSSDEVGregory Nutt2015-01-131-0/+2
|
* Update ChangeLogGregory Nutt2015-01-131-0/+2
|
* apps/exemples/timer: Add a trivial test of the timer driverGregory Nutt2015-01-138-3/+444
|
* Micro Python: Fix a typo in the port configuration fileGregory Nutt2015-01-122-5/+21
|
* Fix typo in makefileGregory Nutt2015-01-122-33/+33
|
* Micro Python: Flesh out make clean target; mp_int_t and mp_uint_t should be ↵Gregory Nutt2015-01-122-2/+5
| | | | pointer size