Cosmetic plus some configuration default changes
This commit is contained in:
parent
c7f4f91e77
commit
b8840dc6de
7
TODO
7
TODO
@ -15,7 +15,7 @@ nuttx/
|
||||
(11) Kernel Build
|
||||
(4) C++ Support
|
||||
(6) Binary loaders (binfmt/)
|
||||
(16) Network (net/, drivers/net)
|
||||
(15) Network (net/, drivers/net)
|
||||
(4) USB (drivers/usbdev, drivers/usbhost)
|
||||
(10) Libraries (libc/, )
|
||||
(12) File system/Generic drivers (fs/, drivers/)
|
||||
@ -770,11 +770,6 @@ o Binary loaders (binfmt/)
|
||||
o Network (net/, drivers/net)
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
Title: SOCK_RAW/SOCK_PACKET
|
||||
Description: Should implement SOCK_RAW, SOCK_PACKET
|
||||
Status: Open. No changes are planned.
|
||||
Priority: Low
|
||||
|
||||
Title: MULTIPLE NETWORK INTERFACE SUPPORT
|
||||
Description: uIP polling issues / Multiple network interface support:
|
||||
|
||||
|
@ -14,7 +14,7 @@ if NET_IOB
|
||||
|
||||
config IOB_NBUFFERS
|
||||
int "Number of pre-allocated network I/O buffers"
|
||||
default 16
|
||||
default 24
|
||||
---help---
|
||||
Each packet is represented by a series of small I/O buffers in a
|
||||
chain. This setting determines the number of preallocated I/O
|
||||
@ -22,7 +22,7 @@ config IOB_NBUFFERS
|
||||
|
||||
config IOB_BUFSIZE
|
||||
int "Payload size of one network I/O buffer"
|
||||
default 256
|
||||
default 196
|
||||
---help---
|
||||
Each packet is represented by a series of small I/O buffers in a
|
||||
chain. This setting determines the data payload each preallocated
|
||||
|
@ -159,7 +159,8 @@ static uint16_t send_interrupt(FAR struct uip_driver_s *dev, FAR void *pvconn,
|
||||
|
||||
if ((flags & UIP_ACKDATA) != 0)
|
||||
{
|
||||
FAR sq_entry_t *entry, *next;
|
||||
FAR sq_entry_t *entry;
|
||||
FAR sq_entry_t *next;
|
||||
FAR struct uip_wrbuffer_s *segment;
|
||||
uint32_t ackno;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user