summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* apps/examples/udp: The UDP test example has been extend to support IPv6 ↵Gregory Nutt2015-01-229-44/+577
| | | | domain sockets
* Cosmetic changes to comments; refresh configurationGregory Nutt2015-01-223-3/+11
|
* Update ChangeLogGregory Nutt2015-01-221-0/+4
|
* Correct the MSS calculationGregory Nutt2015-01-221-2/+2
|
* Correct calculation of initial MSSGregory Nutt2015-01-221-0/+18
|
* Networking: Back out a previous change. It is incorrectGregory Nutt2015-01-222-5/+11
|
* Forgot to remove some debug instrumentation in the last commitGregory Nutt2015-01-223-8/+0
|
* Merge remote-tracking branch 'origin/master' into ipv6Gregory Nutt2015-01-220-0/+0
|\
| * Armv7-M: Remove Px4-only setting of stack to 0xff. This is incompatible ↵Gregory Nutt2015-01-221-4/+0
| | | | | | | | with standard NuttX stack montitoring logic
* | Armv7-M: Remove Px4-only setting of stack to 0xff. This is incompatible ↵Gregory Nutt2015-01-226-61/+216
|/ | | | with standard NuttX stack montitoring logic
* Networking: New domain field in socket structure is created by socket(), ↵Gregory Nutt2015-01-223-3/+5
| | | | but missed cases where a socket is created via accept() or dup()
* Update ChangeLogsGregory Nutt2015-01-222-0/+8
|
* Networking: Correct the value returned by accept() in the case where ↵Gregory Nutt2015-01-224-10/+40
| | | | 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
* STM32 Ethernet: Port IPv6 address filtering from the Tiva TM4C driverGregory Nutt2015-01-211-3/+68
|
* Networking: Change some debug outputto vebose debug outputGregory Nutt2015-01-215-40/+40
|
* Networking IPv6: Fix and error when adding a neighbor to the table. ↵Gregory Nutt2015-01-212-6/+30
| | | | Comparing wrong address. Add more debug info too
* Networking: IPv6 receipt logic errors. Don't save neighbor address in ↵Gregory Nutt2015-01-211-24/+55
| | | | table when solicitation is recieved. Save it when the advertisement is received
* Networking: Fix another error in an IPv6 macro. Again ampersand where there ↵Gregory Nutt2015-01-211-1/+1
| | | | should not be one
* Fix some errors in memcpy arguments. No ampersands on array arguments.Gregory Nutt2015-01-213-3/+3
|
* All Ethernet drivers (again): Missed one place where arp_out() is called ↵Gregory Nutt2015-01-2121-22/+485
| | | | and neighber_out() needs to be called
* More typos in debug statementsGregory Nutt2015-01-211-2/+2
|
* Fix a typo introduced in the last commitGregory Nutt2015-01-211-1/+1
|
* IPv6 -- various fixed from problems found in testingGregory Nutt2015-01-215-22/+62
|
* ICMPv6 Neighbor Advertisement: Need to set O flag or response is not used. ↵Gregory Nutt2015-01-211-11/+12
| | | | Also, TTL=255 seems to be more-or-less standard in this message
* 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
|/
* Merge remote-tracking branch 'origin/master' into ipv6Gregory Nutt2015-01-201-1/+1
|\
| * SourceForge Ticket #38. Stray character in ↵Gregory Nutt2015-01-201-1/+1
| | | | | | | | arch/avr/src/at90usb/at90usb_serial.c
* | Update ChangeLogGregory Nutt2015-01-202-2/+6
| |
* | Correct name of fields in struct sockaddr_in6: sin6_port and sin6_family, ↵Gregory Nutt2015-01-2014-84/+79
| | | | | | | | 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
* Update ChangeLogGregory Nutt2015-01-201-0/+3
|
* Networking: When sending ICMPv6 advertisements and solicitations, set the ↵Gregory Nutt2015-01-206-10/+23
| | | | NOARP bit so that we don't overwrite the destination MAC address
* Update ChangeLogGregory Nutt2015-01-201-2/+5
|
* Networking: Modify all Ethernet drivers: Do neighbor look-up on all ↵Gregory Nutt2015-01-2021-25/+276
| | | | outgoing IPv6 packs in order to properly set the destination link layer address.
* Update ChangeLogGregory Nutt2015-01-201-0/+3
|
* Networking: Add missing raw/packet socket support to all Ethernet driversGregory Nutt2015-01-2020-21/+226
|
* Update ChangeLogGregory Nutt2015-01-201-1/+6
|
* Networking: Add logic to search the Neighbor Table and update the ↵Gregory Nutt2015-01-208-15/+552
| | | | destination address in the output Ethernet header OR to send an ICMPv6 Neighbor Solicitation if there is no entry in the Neighbor table for the IPv6 address
* Fix typo in function nameGregory Nutt2015-01-202-2/+2
|
* Fix defaults for IPv6 netmaskGregory Nutt2015-01-201-17/+17
|
* Networking: Clean up IPv6 Neighbor Table logicGregory Nutt2015-01-2013-213/+731
|
* Networking: Update ICMPv6 logic to RFCsGregory Nutt2015-01-2011-78/+181
|
* Update the never-used RTL8187 driver foro IPv6 supportGregory Nutt2015-01-201-9/+63
|
* Ethernet drivers: Use IFF_IS_IPv4 macro. Cannot rely on the EtherType being ↵Gregory Nutt2015-01-2014-28/+28
| | | | set correctly.
* Cosmetic standardization of some naming in commentsGregory Nutt2015-01-1929-37/+37
|
* Networking: Hook in ICMPv6 polling operations into periodic network logicGregory Nutt2015-01-192-10/+47
|
* Merge remote-tracking branch 'origin/master' into ipv6Gregory Nutt2015-01-194-8/+15
|\