zephyr/subsys/net/ip
Ulf Magnusson 1073882998 subsys: kconfig: Remove 'default n' properties and clean up a bit
Bool symbols implicitly default to 'n'.

A 'default n' can make sense e.g. in a Kconfig.defconfig file, if you
want to override a 'default y' on the base definition of the symbol. It
isn't used like that on any of these symbols though.

Remove some 'default ""' properties on string symbols too.

Also make definitions more consistent by converting some

  config FOO
  	<type>
  	prompt "foo"

definitions to a shorter form:

  config FOO
  	<type> "foo"

This shorthand works for int/hex/string symbols too, not just for bool
symbols.

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2018-07-12 23:13:22 -04:00
..
6lo_private.h net: Convert raw timeout values to use K_MSEC() macro 2018-05-28 17:20:11 -04:00
6lo.c net: 6lo: Do not try compressing IPHC header if not set 2018-03-02 07:11:46 +01:00
6lo.h
CMakeLists.txt net: shell: Add gptp command 2018-06-28 16:50:50 +03:00
connection.c net: stats: do not use deallocated packet pointer 2018-06-11 17:33:17 -04:00
connection.h
dhcpv4.c net: dhcpv4: Use less parameters in debug print 2018-07-10 12:37:31 +03:00
dhcpv4.h
icmpv4.c net: icmpv4: Set the ICMPv4 header correctly 2018-07-05 15:44:49 +03:00
icmpv4.h net: icmpv4: Merge process_icmpv4_pkt() into net_icmpv4_input() 2018-07-02 17:33:44 +03:00
icmpv6.c net/ipv6: Properly separate what belongs to ipv6 from the rest 2018-07-02 12:34:12 +03:00
icmpv6.h net: icmp: Remove NET_ICMP_HDR() macro and direct access to net_buf 2017-07-07 15:24:00 +03:00
ipv4.c net: icmpv4: Merge process_icmpv4_pkt() into net_icmpv4_input() 2018-07-02 17:33:44 +03:00
ipv4.h net/ipv4: Properly separate what belongs to ipv4 from the rest 2018-07-02 12:34:12 +03:00
ipv6.c net/ipv6: Properly separate what belongs to ipv6 from the rest 2018-07-02 12:34:12 +03:00
ipv6.h net/ipv6: Properly separate what belongs to ipv6 from the rest 2018-07-02 12:34:12 +03:00
Kconfig subsys: kconfig: Remove 'default n' properties and clean up a bit 2018-07-12 23:13:22 -04:00
Kconfig.debug subsys: kconfig: Remove 'default n' properties and clean up a bit 2018-07-12 23:13:22 -04:00
Kconfig.ipv4 subsys: kconfig: Remove 'default n' properties and clean up a bit 2018-07-12 23:13:22 -04:00
Kconfig.ipv6 subsys: kconfig: Remove 'default n' properties and clean up a bit 2018-07-12 23:13:22 -04:00
Kconfig.mgmt subsys: kconfig: Remove 'default n' properties and clean up a bit 2018-07-12 23:13:22 -04:00
Kconfig.rpl subsys: kconfig: Remove 'default n' properties and clean up a bit 2018-07-12 23:13:22 -04:00
Kconfig.stack
Kconfig.stats subsys: kconfig: Remove 'default n' properties and clean up a bit 2018-07-12 23:13:22 -04:00
nbr.c net: nbr: Use the real size of the neighbor pool 2017-08-14 11:06:34 +03:00
nbr.h net: nbr: Use the real size of the neighbor pool 2017-08-14 11:06:34 +03:00
net_context.c net/ipv6: Properly separate what belongs to ipv6 from the rest 2018-07-02 12:34:12 +03:00
net_core.c net/arp: No need to expose publicly arp header 2018-06-29 12:57:45 +03:00
net_if.c net: if: Fix TX timestamp callbacks invocation 2018-07-04 16:26:35 -04:00
net_mgmt.c net/mgmt: Move NET_EVENT_INFO_MAX_SIZE into net core's private header 2018-04-12 09:56:07 -04:00
net_pkt.c net: pkt: Fix comment typo in word tailroom 2018-06-18 09:17:47 -04:00
net_private.h net: gptp: Initial core IEEE 802.1AS support 2018-06-28 16:50:50 +03:00
net_shell.c net: gptp: Fix validation of non-numeric inputs from net shell 2018-07-04 16:26:35 -04:00
net_shell.h net: shell: Remove net_shell_init() as it is not needed 2017-08-01 14:45:06 +03:00
net_stats.c net: stats: Make statistics collection per network interface 2018-04-10 13:29:39 +03:00
net_stats.h net: stats: handle_na_input: unref packet after stats are updated 2018-06-11 17:33:17 -04:00
net_tc.c net: tc: dont yield during net_rc tx/rx workq init 2018-05-30 20:26:25 -04:00
route.c net: route: Do not dereference NULL pointer while getting next hop 2018-03-02 07:11:46 +01:00
route.h
rpl-mrhof.c net: Fix indentation issues 2017-08-09 16:01:28 +03:00
rpl-of0.c net: Fix indentation issues 2017-08-09 16:01:28 +03:00
rpl.c net/ipv6: Properly separate what belongs to ipv6 from the rest 2018-07-02 12:34:12 +03:00
rpl.h net/pkt: Use IS_ENABLED instead of ifdef 2018-06-11 17:21:12 -04:00
tcp_internal.h net: tcp: expose some TCP helper functions 2018-05-15 18:07:47 +03:00
tcp.c net/ipv6: Properly separate what belongs to ipv6 from the rest 2018-07-02 12:34:12 +03:00
trickle.c net: trickle: Do clock wrap check properly 2017-08-07 21:32:03 -04:00
udp_internal.h net: udp: Remove NET_UDP_HDR() macro and direct access to net_buf 2017-07-07 15:24:00 +03:00
udp.c net: udp: Remove NET_UDP_HDR() macro and direct access to net_buf 2017-07-07 15:24:00 +03:00
utils.c net: add bound checking in net_addr_pton() 2018-07-05 14:17:23 +03:00