Changeset ba91618 for tools/traceanon
- Timestamp:
- 04/23/10 11:34:08 (12 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, getfragoff, help, 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:
- 83a1f4e
- Parents:
- db9fa93
- Location:
- tools/traceanon
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/traceanon/traceanon.1
r1481ba7 rba91618 8 8 [ \-p prefix | \-\^\-prefix=prefix ] 9 9 [ \-c key | \-\^\-cryptopan=key ] 10 [ \-z level | \-\^\-compress-level=level ] 11 [ \-Z method | \-\^\-compress-type=method ] 10 12 sourceuri 11 13 desturi … … 51 53 encrypt the IP addresses using the prefix-preserving cryptopan method using 52 54 the key "key". The key can be up to 32 bytes long, and will be padded with 53 NUL charactors.55 NULL characters. 54 56 57 .TP 58 .PD 0 59 .BI \-z 60 .TP 61 .PD 62 .BI \-\^\-compress-level=level 63 compress the output trace using a compression level of "level". Compression 64 level can range from 0 (no compression) through to 9. Higher compression levels 65 require more CPU to compress data. Defaults to no compression. 66 67 .TP 68 .PD 0 69 .BI \-Z 70 .TP 71 .PD 72 .BI \-\^\-compress-type=method 73 compress the output trace using the compression algorithm "method". Possible 74 algorithms are "gzip", "bzip2", "lzo" and "none". Default is "none". 55 75 56 76 .SH EXAMPLES … … 59 79 \-\^\-encrypt-source \\ 60 80 \-\^\-encrypt-dest \\ 81 \-\^\-compress-level=1 \\ 82 \-\^\-compress-type=gzip \\ 61 83 erf:/traces/unenc.gz \\ 62 84 erf:/traces/enc.gz \\ -
tools/traceanon/traceanon.c
rdb9fa93 rba91618 22 22 "-p --prefix=C.I.D.R/bits Substitute the prefix of the address\n" 23 23 "-H --libtrace-help Print libtrace runtime documentation\n" 24 "-z --compress ion-level Compress the output trace at the specified level\n"25 "-Z --compress ion-type Compress the output trace using the specified"24 "-z --compress-level Compress the output trace at the specified level\n" 25 "-Z --compress-type Compress the output trace using the specified" 26 26 " compression algorithm\n" 27 27 ,argv0); … … 128 128 { "cryptopan", 1, 0, 'c' }, 129 129 { "prefix", 1, 0, 'p' }, 130 { "compress ion-level", 1, 0, 'z' },131 { "compress ion-type", 1, 0, 'Z' },130 { "compress-level", 1, 0, 'z' }, 131 { "compress-type", 1, 0, 'Z' }, 132 132 { "libtrace-help", 0, 0, 'H' }, 133 133 { NULL, 0, 0, 0 },
Note: See TracChangeset
for help on using the changeset viewer.