2014-06-27 04:23:21 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 22:08:57 +08:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2014-06-27 04:23:21 +08:00
|
|
|
#
|
2014-06-28 07:51:32 +08:00
|
|
|
|
|
|
|
config NET_ARCH_INCR32
|
|
|
|
bool "Architecture-specific net_incr32()"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Define if you architecture provided an optimized version of
|
|
|
|
net_incr32() with prototype:
|
|
|
|
|
|
|
|
void net_incr32(FAR uint8_t *op32, uint16_t op16)
|
|
|
|
|
|
|
|
config NET_ARCH_CHKSUM
|
|
|
|
bool "Architecture-specific net_chksum()"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Define if you architecture provided an optimized version of
|
|
|
|
functions with the following prototypes:
|
|
|
|
|
|
|
|
uint16_t net_chksum(FAR uint16_t *data, uint16_t len)
|
2015-01-15 06:10:38 +08:00
|
|
|
uint16_t ipv4_chksum(FAR struct net_driver_s *dev)
|
2015-01-18 22:56:05 +08:00
|
|
|
uint16_t tcp_ipv4_chksum(FAR struct net_driver_s *dev);
|
|
|
|
uint16_t tcp_ipv6_chksum(FAR struct net_driver_s *dev);
|
2015-01-23 23:33:18 +08:00
|
|
|
uint16_t udp_ipv4_chksum(FAR struct net_driver_s *dev);
|
|
|
|
uint16_t udp_ipv6_chksum(FAR struct net_driver_s *dev);
|