Gregory Nutt
|
033b42789b
|
NSH: Fix some ieee 802.15.4 initialization logic. It should not set the saddr or panid; those cannot be hard-coded but must come from the coordinator.
|
2017-06-17 10:04:18 -06:00 |
|
Sebastien Lorquet
|
ea1025ead2
|
DHCPC: Remove hard-coded interface device. Now passed as a parameter to dhcpc_open().
|
2017-05-19 15:31:22 -06:00 |
|
Gregory Nutt
|
44ace8e1cc
|
6loWPAN: Replace some Rime address naming with more consistent short/exended address terminology
|
2017-05-04 08:21:12 -06:00 |
|
Gregory Nutt
|
08b2fee0fb
|
NSH: Needs to include tftp.h if TFTP no disabled
|
2017-04-29 08:42:26 -06:00 |
|
Gregory Nutt
|
ad608c705c
|
nshlib: nsh_netcmds.c should include netlib.h even if neither TCP nor UDP are enabled
|
2017-04-25 08:25:23 -06:00 |
|
Gregory Nutt
|
8369052a22
|
NSH library: Extend ifconfig to support 6loWPAN. Adapt to some changes in configuration variable usage.
|
2017-04-08 12:21:40 -06:00 |
|
Gregory Nutt
|
efa2de16a4
|
NSH: Fix some warnings about integer/pointer casts of different sizes (probably only effects 64-bit simulation)
|
2017-04-03 09:26:10 -06:00 |
|
Sebastien Lorquet
|
2cbad44f1d
|
This is the Pokemon patch to change all includes fronm <apps/bla/bla.h> to "bla/bla.h"
|
2016-07-11 10:11:18 -06:00 |
|
Gregory Nutt
|
65899c99e6
|
apps/nshlib: Change some *err() message to *info() messages if what was a *dbg() message does not indicate and error condition.
|
2016-06-14 14:18:07 -06:00 |
|
Gregory Nutt
|
586b0aa7e0
|
Change names of *dbg() * *err()
|
2016-06-11 15:51:27 -06:00 |
|
Gregory Nutt
|
d5c3bae6cd
|
apps/: Replace irqsave() with enter_critical_section(); replace irqrestore() with leave_critical_section()
|
2016-02-14 15:15:37 -06:00 |
|
Gregory Nutt
|
5642e02f77
|
Fix some incorrect usage of INADDR_ANY
|
2016-02-09 11:24:30 -06:00 |
|
Gregory Nutt
|
b54aa2b081
|
NSH: Improve an error message
|
2016-02-08 16:29:54 -06:00 |
|
Gregory Nutt
|
3df8b716dc
|
Remove some redundant logic
|
2016-02-08 16:19:21 -06:00 |
|
Gregory Nutt
|
1482732f18
|
NetLib: Move functions in netlib.c to separate files; improve some naming
|
2016-02-08 16:09:24 -06:00 |
|
Gregory Nutt
|
b8c8bea22c
|
Add an 'arp' command to NSH to support access to the OS ARP table
|
2016-02-08 14:49:05 -06:00 |
|
Gregory Nutt
|
6febdc60c1
|
Update to use 64-bit timer when available
|
2016-01-21 12:03:04 -06:00 |
|
Gregory Nutt
|
510f325ae4
|
nshlib: Use CONFIG_NSH_PROC_MOUNTPOINT instead of literal /proc; Move readfile() from nsh_proccmds.c to nsh_fsutils.c as nsh_readfile()
|
2015-11-28 07:23:08 -06:00 |
|
Gregory Nutt
|
0fb32570ff
|
apps/nshlib: Remove all references to internal OS interface netdev_foreach(). Logic in ifconfig, ifup, and ifown now use the procfs file system to examine networking status.
|
2015-11-27 17:47:09 -06:00 |
|
Gregory Nutt
|
bb88ff9b12
|
nshlib/: ifconfig now uses /proc/net/eth0 to display network configuration. You will need to enable the procfs file system in order to use ifconfig
|
2015-11-27 16:57:22 -06:00 |
|
Gregory Nutt
|
32b992971b
|
apps/nshlib: The 'ifconfig' command now uses /proc/net/stat to show network statistics. A consequence of this is that you cannot view network statistics if the procfs is not enabled and mounted at /proc
|
2015-11-27 13:04:11 -06:00 |
|
Gregory Nutt
|
f48d95e941
|
Use lower case labels in ifconfig driver statistics to better match other labels
|
2015-11-27 07:36:49 -06:00 |
|
Gregory Nutt
|
981e74b810
|
If CONFIG_NETDEV_STATISTICS=y, then ifconfig will now print network driver statistics
|
2015-11-26 14:43:34 -06:00 |
|
Gregory Nutt
|
aacfce081e
|
Fix several cosmetic, C coding style issues
|
2015-10-03 11:03:42 -06:00 |
|
Gregory Nutt
|
b7b943067a
|
NSH: Fix formatting of ifconfig Local Loopback output
|
2015-08-26 07:59:12 -06:00 |
|
Gregory Nutt
|
ce3a2dc0d4
|
NSH changes to work with the network local loopback device
|
2015-08-24 13:59:52 -06:00 |
|
Gregory Nutt
|
25f144fd55
|
NSH: Fix compile issue from all of the recent NETDB changes. If NETDB is not enabled, we need to use inet_pton() instead of gethostbyname()
|
2015-07-17 08:33:22 -06:00 |
|
Gregory Nutt
|
25d45d642f
|
Add an NSH nslookup command
|
2015-07-13 11:19:02 -06:00 |
|
Gregory Nutt
|
ba72767d09
|
apps/netutils/netlib and other files: Create netlib wrapper functions around dns_getserver() and dns_setserver() to isolate application code from changes to those interfaces.
|
2015-07-12 11:53:23 -06:00 |
|
Gregory Nutt
|
c7bd1f4186
|
Replaces calls to non-standard dns_hostip() with calls to the standard gethostbyname()
|
2015-07-11 08:15:29 -06:00 |
|
Gregory Nutt
|
5e8928d009
|
Remove bogus references to CONFIG_HAVE_GETHOSTBYNAME
|
2015-07-10 14:03:28 -06:00 |
|
Gregory Nutt
|
48c36800f5
|
apps/netuils/dnsclient and include/netutils/dnsclient.h: Move the DNS client logic into the NuttX C library. It is a necessary part for the full implementation of the netdb logic and provides more flexibility in that location.
|
2015-07-10 11:31:13 -06:00 |
|
Gregory Nutt
|
fe2c662ee8
|
Trivial change for consistency.
|
2015-05-27 08:43:50 -06:00 |
|
Gregory Nutt
|
5f17ec1fa2
|
Enhanced output to NSH ping command from Max Neklyudov
|
2015-05-27 08:25:26 -06:00 |
|
Gregory Nutt
|
905f881162
|
Enhancements to NSH ifconfig for case of multi-link operation, TUN device and local connections. From Max Neklyudov.
|
2015-05-19 12:26:20 -06:00 |
|
Gregory Nutt
|
d32e66b6a2
|
apps/netutils/netlib: Add utilities to convert to/from prefix lengths from/to 128-bit network masks. Modify the NSH IPv6 ifconfig command to show the network mask in a more standard, human readable way.
|
2015-02-06 10:23:15 -06:00 |
|
Gregory Nutt
|
72d3a733a8
|
Elminate some warnings with TCP and UDP are disabled
|
2015-01-29 09:33:45 -06:00 |
|
Gregory Nutt
|
0c7864ae68
|
NSH: A few minor improvements/corrections to the network status presentation
|
2015-01-24 09:11:12 -06:00 |
|
Gregory Nutt
|
6d2ecf8a79
|
Fix another error in conditional compilation; plus some additional cosmetic changes
|
2015-01-24 09:04:28 -06:00 |
|
Gregory Nutt
|
d001ccb196
|
Correct a typo in conditional compilation
|
2015-01-24 08:38:13 -06:00 |
|
Gregory Nutt
|
beaa7b74a6
|
Networking: Clean up network status collection and presentation for IPv6
|
2015-01-24 08:26:12 -06:00 |
|
Gregory Nutt
|
55ac29ac27
|
Networking: Various bugfixes related to IPv6 ping
|
2015-01-23 14:40:09 -06:00 |
|
Gregory Nutt
|
b39fb98d86
|
apps/nshlib: Add the ping6 command to support checking IPv6 networks. NSH logic is complete but still missing some network level support
|
2015-01-23 12:49:49 -06:00 |
|
Gregory Nutt
|
8fbc907aa2
|
apps/nshlib: Add logic to initialize IPv6 addresses, to display IPv6 addresses, and enough IPv6 ifconfig to allocation compilation (logic still not implemented)
|
2015-01-19 09:59:43 -06:00 |
|
Gregory Nutt
|
953c0fb069
|
Rename IPv4 netlib functions and files to make room in the namespace for corresponding IPv6 functions and files
|
2015-01-18 14:17:00 -06:00 |
|
Gregory Nutt
|
36118a1b76
|
Networking: Replace all references to net_ipaddr_t with either in_addr_t on 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.
|
2015-01-16 12:30:18 -06:00 |
|
Gregory Nutt
|
308818b718
|
NSH TFTP get command: Wrong file name used for the destination. From Lazlo
|
2014-12-10 18:37:43 -06:00 |
|
Gregory Nutt
|
f9074a02ad
|
Network: Various fixes for clean compile with both Ethernet and SLIP
|
2014-11-15 13:52:39 -06:00 |
|
Gregory Nutt
|
b651f37ce7
|
Remove CONFIG_DISABLE_CLOCK
|
2014-08-07 12:35:24 -06:00 |
|
Gregory Nutt
|
633fae427d
|
NET: emoved all includes of uip.h; added includes of ip.h wherever needed. 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.
|
2014-07-04 19:13:08 -06:00 |
|