@@ -96,26 +96,26 @@ typedef enum eTCP_STATE
9696/*
9797 * A few values of the TCP options:
9898 */
99- #define tcpTCP_OPT_END 0U /**< End of TCP options list. */
100- #define tcpTCP_OPT_NOOP 1U /**< "No-operation" TCP option. */
101- #define tcpTCP_OPT_MSS 2U /**< Maximum segment size TCP option. */
102- #define tcpTCP_OPT_WSOPT 3U /**< TCP Window Scale Option (3-byte long). */
103- #define tcpTCP_OPT_SACK_P 4U /**< Advertise that SACK is permitted. */
104- #define tcpTCP_OPT_SACK_A 5U /**< SACK option with first/last. */
105- #define tcpTCP_OPT_TIMESTAMP 8U /**< Time-stamp option. */
99+ #define tcpTCP_OPT_END 0U /**< End of TCP options list. */
100+ #define tcpTCP_OPT_NOOP 1U /**< "No-operation" TCP option. */
101+ #define tcpTCP_OPT_MSS 2U /**< Maximum segment size TCP option. */
102+ #define tcpTCP_OPT_WSOPT 3U /**< TCP Window Scale Option (3-byte long). */
103+ #define tcpTCP_OPT_SACK_P 4U /**< Advertise that SACK is permitted. */
104+ #define tcpTCP_OPT_SACK_A 5U /**< SACK option with first/last. */
105+ #define tcpTCP_OPT_TIMESTAMP 8U /**< Time-stamp option. */
106106
107107
108- #define tcpTCP_OPT_MSS_LEN 4U /**< Length of TCP MSS option. */
109- #define tcpTCP_OPT_WSOPT_LEN 3U /**< Length of TCP WSOPT option. */
110- #define tcpTCP_OPT_WSOPT_MAXIMUM_VALUE ( 14U ) /**< Maximum value of TCP WSOPT option. */
108+ #define tcpTCP_OPT_MSS_LEN 4U /**< Length of TCP MSS option. */
109+ #define tcpTCP_OPT_WSOPT_LEN 3U /**< Length of TCP WSOPT option. */
110+ #define tcpTCP_OPT_WSOPT_MAXIMUM_VALUE ( 14U ) /**< Maximum value of TCP WSOPT option. */
111111
112- #define tcpTCP_OPT_TIMESTAMP_LEN 10 /**< fixed length of the time-stamp option. */
112+ #define tcpTCP_OPT_TIMESTAMP_LEN 10 /**< fixed length of the time-stamp option. */
113113
114114/** @brief
115115 * Minimum segment length as outlined by RFC 791 section 3.1.
116116 * Minimum segment length ( 536 ) = Minimum MTU ( 576 ) - IP Header ( 20 ) - TCP Header ( 20 ).
117117 */
118- #define tcpMINIMUM_SEGMENT_LENGTH 536U
118+ #define tcpMINIMUM_SEGMENT_LENGTH 536U
119119
120120/** @brief
121121 * The macro tcpNOW_CONNECTED() is use to determine if the connection makes a
0 commit comments