Skip to content

Commit 4828512

Browse files
Merge pull request #29 from weston-embedded/release/v3.06.01
Release/v3.06.01
2 parents b4c7dce + 40b41ef commit 4828512

File tree

226 files changed

+1318
-531
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

226 files changed

+1318
-531
lines changed

BSP/Template/bsp_net_eth.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* uC/TCP-IP
44
* The Embedded TCP/IP Suite
55
*
6-
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
6+
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
77
*
88
* SPDX-License-Identifier: APACHE-2.0
99
*
@@ -22,7 +22,7 @@
2222
* TEMPLATE
2323
*
2424
* Filename : bsp_net_eth.c
25-
* Version : V3.06.00
25+
* Version : V3.06.01
2626
*********************************************************************************************************
2727
*/
2828

BSP/Template/bsp_net_eth.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* uC/TCP-IP
44
* The Embedded TCP/IP Suite
55
*
6-
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
6+
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
77
*
88
* SPDX-License-Identifier: APACHE-2.0
99
*
@@ -22,7 +22,7 @@
2222
* TEMPLATE
2323
*
2424
* Filename : bsp_net_eth.h
25-
* Version : V3.06.00
25+
* Version : V3.06.01
2626
*********************************************************************************************************
2727
*/
2828

BSP/Template/bsp_net_wifi.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* uC/TCP-IP
44
* The Embedded TCP/IP Suite
55
*
6-
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
6+
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
77
*
88
* SPDX-License-Identifier: APACHE-2.0
99
*
@@ -22,7 +22,7 @@
2222
* TEMPLATE
2323
*
2424
* Filename : bsp_net_wifi.c
25-
* Version : V3.06.00
25+
* Version : V3.06.01
2626
*********************************************************************************************************
2727
*/
2828

BSP/Template/bsp_net_wifi.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* uC/TCP-IP
44
* The Embedded TCP/IP Suite
55
*
6-
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
6+
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
77
*
88
* SPDX-License-Identifier: APACHE-2.0
99
*
@@ -22,7 +22,7 @@
2222
* TEMPLATE
2323
*
2424
* Filename : bsp_net_wifi.h
25-
* Version : V3.06.00
25+
* Version : V3.06.01
2626
*********************************************************************************************************
2727
*/
2828

Cfg/Template/net_cfg.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* uC/TCP-IP
44
* The Embedded TCP/IP Suite
55
*
6-
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
6+
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
77
*
88
* SPDX-License-Identifier: APACHE-2.0
99
*
@@ -22,7 +22,7 @@
2222
* TEMPLATE-EXAMPLE
2323
*
2424
* Filename : net_cfg.c
25-
* Version : V3.06.00
25+
* Version : V3.06.01
2626
*********************************************************************************************************
2727
*/
2828

Cfg/Template/net_cfg.h

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* uC/TCP-IP
44
* The Embedded TCP/IP Suite
55
*
6-
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
6+
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
77
*
88
* SPDX-License-Identifier: APACHE-2.0
99
*
@@ -22,7 +22,7 @@
2222
* TEMPLATE
2323
*
2424
* Filename : net_cfg.h
25-
* Version : V3.06.00
25+
* Version : V3.06.01
2626
*********************************************************************************************************
2727
*/
2828

@@ -514,6 +514,29 @@ extern const NET_TASK_CFG NetTmrTaskCfg;
514514
/* to never time out. Note that it's possible to change at runtime any timeout values using Socket option API. */
515515
/* #define NET_TCP_DFLT_TIMEOUT_CONN_RX_Q_MS 1000u */
516516
/* #define NET_TCP_DFLT_TIMEOUT_CONN_TX_Q_MS 1000u */
517+
/* */
518+
/* */
519+
/* When a new TCP connection is established, RFC #6528 recommends the sequence number to be randomized w/ the following */
520+
/* method: */
521+
/* ISN = M + F(localip, localport, remoteip, remoteport, secretkey) */
522+
/* */
523+
/* Where: */
524+
/* M = The value of a counter (NetTCP_TxSeqNbrCtr) maintained by the developer */
525+
/* at the BSP level. The counter must be incremented by '1' every 4 uS. */
526+
/* */
527+
/* F = A mixing function (chosen to be MD5) that takes as input the five-tuple: */
528+
/* (localip, localport, remoteip, remoteport, secretkey); of which the first */
529+
/* four coordinates are known but 'secretkey' must be chosen preferably at */
530+
/* boot time (See NetTCP_Init()). */
531+
/* */
532+
/* */
533+
/* When the NET_TCP_CFG_RANDOM_ISN_GEN define is uncommented, the user must define a BSP-level function with signature */
534+
/* CPU_INT32U NetBSP_GetEntropyVal(void) that returns a 32 bit random value generated by a hardware random number */
535+
/* generator or from another entropy source (such as an ADC). This value will be used to seed the initial sequence nbr. */
536+
/* In addition, the user should maintain a 32-bit counter incremented every 4 microseconds as described above. */
537+
/* */
538+
/* #define NET_TCP_CFG_RANDOM_ISN_GEN */
539+
/* */
517540
/* ==================================================================================================================== */
518541

519542

Cfg/Template/net_dev_cfg.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* uC/TCP-IP
44
* The Embedded TCP/IP Suite
55
*
6-
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
6+
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
77
*
88
* SPDX-License-Identifier: APACHE-2.0
99
*
@@ -22,7 +22,7 @@
2222
* TEMPLATE
2323
*
2424
* Filename : net_dev_cfg.c
25-
* Version : V3.06.00
25+
* Version : V3.06.01
2626
*********************************************************************************************************
2727
*/
2828

Cfg/Template/net_dev_cfg.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* uC/TCP-IP
44
* The Embedded TCP/IP Suite
55
*
6-
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
6+
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
77
*
88
* SPDX-License-Identifier: APACHE-2.0
99
*
@@ -22,7 +22,7 @@
2222
* TEMPLATE
2323
*
2424
* Filename : net_dev_cfg.h
25-
* Version : V3.06.00
25+
* Version : V3.06.01
2626
*********************************************************************************************************
2727
*/
2828

Cmd/net_cmd.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* uC/TCP-IP
44
* The Embedded TCP/IP Suite
55
*
6-
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
6+
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
77
*
88
* SPDX-License-Identifier: APACHE-2.0
99
*
@@ -20,7 +20,7 @@
2020
* NETWORK SHELL COMMAND
2121
*
2222
* Filename : net_cmd.c
23-
* Version : V3.06.00
23+
* Version : V3.06.01
2424
*********************************************************************************************************
2525
* Note(s) : (1) Assumes the following versions (or more recent) of software modules are included in
2626
* the project build :

Cmd/net_cmd.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* uC/TCP-IP
44
* The Embedded TCP/IP Suite
55
*
6-
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
6+
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
77
*
88
* SPDX-License-Identifier: APACHE-2.0
99
*
@@ -20,7 +20,7 @@
2020
* NETWORK SHELL COMMAND
2121
*
2222
* Filename : net_cmd.h
23-
* Version : V3.06.00
23+
* Version : V3.06.01
2424
*********************************************************************************************************
2525
* Note(s) : (1) Assumes the following versions (or more recent) of software modules are included in
2626
* the project build :

0 commit comments

Comments
 (0)