1 #ifndef __TCP_CONSTANTS_H_
2 #define __TCP_CONSTANTS_H_
3 
4 /**
5 * This file defines HSI constants for the TCP flows
6 */
7 
8 #define T_TCP_ISLE_ARRAY_SIZE					256
9 #define T_TCP_MAX_ISLES_PER_CONNECTION_TOE		16    // minimum 1 isle per connection, maximum 254 (because isle numbers 0 and 255 are reserved)
10 #define T_TCP_MAX_ISLES_PER_CONNECTION_ISCSI	32    // minimum 1 isle per connection, maximum 254 (because isle numbers 0 and 255 are reserved)
11 
12 #endif /*__TCP_CONSTANTS_H_ */
13