lasip.h 550 B

12345678910111213141516171819202122
  1. /** BEGIN COPYRIGHT BLOCK
  2. * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
  3. * Copyright (C) 2005 Red Hat, Inc.
  4. * All rights reserved.
  5. *
  6. * License: GPL (version 3 or any later version).
  7. * See LICENSE for details.
  8. * END COPYRIGHT BLOCK **/
  9. #ifdef HAVE_CONFIG_H
  10. # include <config.h>
  11. #endif
  12. typedef struct LASIpTree {
  13. struct LASIpTree *action[2];
  14. } LASIpTree_t;
  15. typedef struct LASIpContext {
  16. LASIpTree_t *treetop; /* Top of the pattern tree */
  17. LASIpTree_t *treetop_ipv6; /* Top of the IPv6 pattern tree */
  18. } LASIpContext_t;