- Timestamp:
- 01/20/15 10:52:15 (6 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- 1b59edf, cb39d35
- Parents:
- 18bf317 (diff), 04bf7c5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Location:
- tools/traceanon
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/traceanon/ipenc.c
ra8f2692 r925ae60 19 19 #endif 20 20 21 static enum enc_type_t enc_type = ENC_NONE;21 static __thread enum enc_type_t enc_type = ENC_NONE; 22 22 23 23 static uint32_t masks[33] = { … … 31 31 }; 32 32 33 static uint32_t prefix;34 static uint32_t netmask;33 static __thread uint32_t prefix; 34 static __thread uint32_t netmask; 35 35 static void init_prefix(const char *key) 36 36 { -
tools/traceanon/rijndael.c
rc0a5a50 r925ae60 50 50 #include <string.h> 51 51 52 static State m_state; 53 static Mode m_mode; 54 static Direction m_direction; 55 static UINT8 m_initVector[MAX_IV_SIZE]; 56 static UINT32 m_uRounds; 57 static UINT8 m_expandedKey[_MAX_ROUNDS+1][4][4]; 58 52 static __thread State m_state; 53 static __thread Mode m_mode; 54 static __thread Direction m_direction; 55 static __thread UINT8 m_initVector[MAX_IV_SIZE]; 56 static __thread UINT32 m_uRounds; 57 static __thread UINT8 m_expandedKey[_MAX_ROUNDS+1][4][4]; 59 58 60 59 static UINT8 S[256]=
Note: See TracChangeset
for help on using the changeset viewer.