4.0.1-hotfixescachetimestampsdevelopdpdk-ndagetsilivegetfragoffhelplibtrace4ndag_formatpfringrc-4.0.1rc-4.0.2rc-4.0.3rc-4.0.4ringdecrementfixringperformanceringtimestampfixes
Last change
on this file since 35e0869 was
49f147b,
checked in by Perry Lorier <perry@…>, 17 years ago
|
Add traceanon to cvs (based heavily on the munge code)
|
-
Property mode set to
100644
|
File size:
349 bytes
|
Rev | Line | |
---|
[49f147b] | 1 | #ifndef IPENC_H |
---|
| 2 | #define IPENC_H |
---|
| 3 | #include <inttypes.h> |
---|
| 4 | /** The encryption algorithm used |
---|
| 5 | */ |
---|
| 6 | enum enc_type_t { |
---|
| 7 | ENC_NONE, /**< No encryption */ |
---|
| 8 | ENC_PREFIX_SUBSTITUTION, /**< Substitute a prefix */ |
---|
| 9 | ENC_CRYPTOPAN /**< Prefix preserving encryption */ |
---|
| 10 | }; |
---|
| 11 | void enc_init(enum enc_type_t type, char *key); |
---|
| 12 | uint32_t enc_ip(uint32_t orig_addr); |
---|
| 13 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.