tcpreplay_opts.h 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. /* -*- buffer-read-only: t -*- vi: set ro:
  2. *
  3. * DO NOT EDIT THIS FILE (tcpreplay_opts.h)
  4. *
  5. * It has been AutoGen-ed Monday April 30, 2007 at 01:31:09 PM PDT
  6. * From the definitions tcpreplay_opts.def
  7. * and the template file options
  8. *
  9. * Generated from AutoOpts 28:0:3 templates.
  10. */
  11. /*
  12. * This file was produced by an AutoOpts template. AutoOpts is a
  13. * copyrighted work. This header file is not encumbered by AutoOpts
  14. * licensing, but is provided under the licensing terms chosen by the
  15. * tcpreplay author or copyright holder. AutoOpts is licensed under
  16. * the terms of the LGPL. The redistributable library (``libopts'') is
  17. * licensed under the terms of either the LGPL or, at the users discretion,
  18. * the BSD license. See the AutoOpts and/or libopts sources for details.
  19. *
  20. * This source file is copyrighted and licensed under the following terms:
  21. *
  22. * tcpreplay copyright 2000-2007 Aaron Turner - all rights reserved
  23. *
  24. * tcpreplay is free software copyrighted by Aaron Turner.
  25. *
  26. * Redistribution and use in source and binary forms, with or without
  27. * modification, are permitted provided that the following conditions
  28. * are met:
  29. * 1. Redistributions of source code must retain the above copyright
  30. * notice, this list of conditions and the following disclaimer.
  31. * 2. Redistributions in binary form must reproduce the above copyright
  32. * notice, this list of conditions and the following disclaimer in the
  33. * documentation and/or other materials provided with the distribution.
  34. * 3. Neither the name ``Aaron Turner'' nor the name of any other
  35. * contributor may be used to endorse or promote products derived
  36. * from this software without specific prior written permission.
  37. *
  38. * tcpreplay IS PROVIDED BY Aaron Turner ``AS IS'' AND ANY EXPRESS
  39. * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  40. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  41. * ARE DISCLAIMED. IN NO EVENT SHALL Aaron Turner OR ANY OTHER CONTRIBUTORS
  42. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  43. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  44. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  45. * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  46. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  47. * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  48. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  49. */
  50. /*
  51. * This file contains the programmatic interface to the Automated
  52. * Options generated for the tcpreplay program.
  53. * These macros are documented in the AutoGen info file in the
  54. * "AutoOpts" chapter. Please refer to that doc for usage help.
  55. */
  56. #ifndef AUTOOPTS_TCPREPLAY_OPTS_H_GUARD
  57. #define AUTOOPTS_TCPREPLAY_OPTS_H_GUARD
  58. #include "config.h"
  59. #include <autoopts/options.h>
  60. /*
  61. * Ensure that the library used for compiling this generated header is at
  62. * least as new as the version current when the header template was released
  63. * (not counting patch version increments). Also ensure that the oldest
  64. * tolerable version is at least as old as what was current when the header
  65. * template was released.
  66. */
  67. #define AO_TEMPLATE_VERSION 114688
  68. #if (AO_TEMPLATE_VERSION < OPTIONS_MINIMUM_VERSION) \
  69. || (AO_TEMPLATE_VERSION > OPTIONS_STRUCT_VERSION)
  70. # error option template version mismatches autoopts/options.h header
  71. Choke Me.
  72. #endif
  73. /*
  74. * Enumeration of each option:
  75. */
  76. typedef enum {
  77. INDEX_OPT_QUIET = 0,
  78. INDEX_OPT_ACCURATE = 1,
  79. INDEX_OPT_DBUG = 2,
  80. INDEX_OPT_VERBOSE = 3,
  81. INDEX_OPT_DECODE = 4,
  82. INDEX_OPT_ENABLE_FILE_CACHE = 5,
  83. INDEX_OPT_CACHEFILE = 6,
  84. INDEX_OPT_INTF1 = 7,
  85. INDEX_OPT_INTF2 = 8,
  86. INDEX_OPT_LISTNICS = 9,
  87. INDEX_OPT_LOOP = 10,
  88. INDEX_OPT_PKTLEN = 11,
  89. INDEX_OPT_LIMIT = 12,
  90. INDEX_OPT_MULTIPLIER = 13,
  91. INDEX_OPT_PPS = 14,
  92. INDEX_OPT_MBPS = 15,
  93. INDEX_OPT_TOPSPEED = 16,
  94. INDEX_OPT_ONEATATIME = 17,
  95. INDEX_OPT_PID = 18,
  96. INDEX_OPT_VERSION = 19,
  97. INDEX_OPT_LESS_HELP = 20,
  98. INDEX_OPT_HELP = 21,
  99. INDEX_OPT_MORE_HELP = 22,
  100. INDEX_OPT_SAVE_OPTS = 23,
  101. INDEX_OPT_LOAD_OPTS = 24
  102. } teOptIndex;
  103. #define OPTION_CT 25
  104. /*
  105. * Interface defines for all options. Replace "n" with the UPPER_CASED
  106. * option name (as in the teOptIndex enumeration above).
  107. * e.g. HAVE_OPT( QUIET )
  108. */
  109. #define DESC(n) (tcpreplayOptions.pOptDesc[INDEX_OPT_## n])
  110. #define HAVE_OPT(n) (! UNUSED_OPT(& DESC(n)))
  111. #define OPT_ARG(n) (DESC(n).optArg.argString)
  112. #define STATE_OPT(n) (DESC(n).fOptState & OPTST_SET_MASK)
  113. #define COUNT_OPT(n) (DESC(n).optOccCt)
  114. #define ISSEL_OPT(n) (SELECTED_OPT(&DESC(n)))
  115. #define ISUNUSED_OPT(n) (UNUSED_OPT(& DESC(n)))
  116. #define ENABLED_OPT(n) (! DISABLED_OPT(& DESC(n)))
  117. #define STACKCT_OPT(n) (((tArgList*)(DESC(n).optCookie))->useCt)
  118. #define STACKLST_OPT(n) (((tArgList*)(DESC(n).optCookie))->apzArgs)
  119. #define CLEAR_OPT(n) STMTS( \
  120. DESC(n).fOptState &= OPTST_PERSISTENT_MASK; \
  121. if ( (DESC(n).fOptState & OPTST_INITENABLED) == 0) \
  122. DESC(n).fOptState |= OPTST_DISABLED; \
  123. DESC(n).optCookie = NULL )
  124. /*
  125. * Interface defines for specific options.
  126. */
  127. #define VALUE_OPT_QUIET 'q'
  128. #define VALUE_OPT_ACCURATE 'a'
  129. #ifdef DEBUG
  130. #define VALUE_OPT_DBUG 'd'
  131. #define OPT_VALUE_DBUG (DESC(DBUG).optArg.argInt)
  132. #endif /* DEBUG */
  133. #ifdef ENABLE_VERBOSE
  134. #define VALUE_OPT_VERBOSE 'v'
  135. #define SET_OPT_VERBOSE STMTS( \
  136. DESC(VERBOSE).optActualIndex = 3; \
  137. DESC(VERBOSE).optActualValue = VALUE_OPT_VERBOSE; \
  138. DESC(VERBOSE).fOptState &= OPTST_PERSISTENT_MASK; \
  139. DESC(VERBOSE).fOptState |= OPTST_SET )
  140. #endif /* ENABLE_VERBOSE */
  141. #ifdef ENABLE_VERBOSE
  142. #define VALUE_OPT_DECODE 'A'
  143. #endif /* ENABLE_VERBOSE */
  144. #define VALUE_OPT_ENABLE_FILE_CACHE 'C'
  145. #define VALUE_OPT_CACHEFILE 'c'
  146. #define VALUE_OPT_INTF1 'i'
  147. #define VALUE_OPT_INTF2 'I'
  148. #ifdef ENABLE_PCAP_FINDALLDEVS
  149. #define VALUE_OPT_LISTNICS 'N'
  150. #endif /* ENABLE_PCAP_FINDALLDEVS */
  151. #define VALUE_OPT_LOOP 'l'
  152. #define OPT_VALUE_LOOP (DESC(LOOP).optArg.argInt)
  153. #define VALUE_OPT_PKTLEN 'S'
  154. #define VALUE_OPT_LIMIT 'L'
  155. #define OPT_VALUE_LIMIT (DESC(LIMIT).optArg.argInt)
  156. #define VALUE_OPT_MULTIPLIER 'm'
  157. #define VALUE_OPT_PPS 'p'
  158. #define OPT_VALUE_PPS (DESC(PPS).optArg.argInt)
  159. #define VALUE_OPT_MBPS 'M'
  160. #define VALUE_OPT_TOPSPEED 't'
  161. #define VALUE_OPT_ONEATATIME 'o'
  162. #define VALUE_OPT_PID 'P'
  163. #define VALUE_OPT_VERSION 'V'
  164. #define VALUE_OPT_LESS_HELP 'h'
  165. #define VALUE_OPT_SAVE_OPTS INDEX_OPT_SAVE_OPTS
  166. #define VALUE_OPT_LOAD_OPTS INDEX_OPT_LOAD_OPTS
  167. #define VALUE_OPT_HELP 'H'
  168. #define VALUE_OPT_MORE_HELP '!'
  169. #define SET_OPT_SAVE_OPTS(a) STMTS( \
  170. DESC(SAVE_OPTS).fOptState &= OPTST_PERSISTENT_MASK; \
  171. DESC(SAVE_OPTS).fOptState |= OPTST_SET; \
  172. DESC(SAVE_OPTS).optArg.argString = (char const*)(a) )
  173. /*
  174. * Interface defines not associated with particular options
  175. */
  176. #define ERRSKIP_OPTERR STMTS( tcpreplayOptions.fOptSet &= ~OPTPROC_ERRSTOP )
  177. #define ERRSTOP_OPTERR STMTS( tcpreplayOptions.fOptSet |= OPTPROC_ERRSTOP )
  178. #define RESTART_OPT(n) STMTS( \
  179. tcpreplayOptions.curOptIdx = (n); \
  180. tcpreplayOptions.pzCurOpt = NULL )
  181. #define START_OPT RESTART_OPT(1)
  182. #define USAGE(c) (*tcpreplayOptions.pUsageProc)( &tcpreplayOptions, c )
  183. /* extracted from /opt/local/share/autogen/opthead.tpl near line 345 */
  184. /* * * * * *
  185. *
  186. * Declare the tcpreplay option descriptor.
  187. */
  188. #ifdef __cplusplus
  189. extern "C" {
  190. #endif
  191. extern tOptions tcpreplayOptions;
  192. #ifndef _
  193. # if ENABLE_NLS
  194. # include <stdio.h>
  195. static inline char* aoGetsText( char const* pz ) {
  196. if (pz == NULL) return NULL;
  197. return (char*)gettext( pz );
  198. }
  199. # define _(s) aoGetsText(s)
  200. # else /* ENABLE_NLS */
  201. # define _(s) s
  202. # endif /* ENABLE_NLS */
  203. #endif
  204. #ifdef __cplusplus
  205. }
  206. #endif
  207. #endif /* AUTOOPTS_TCPREPLAY_OPTS_H_GUARD */
  208. /* tcpreplay_opts.h ends here */