get.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* $Id$ */
  2. /*
  3. * Copyright (c) 2001-2010 Aaron Turner <aturner at synfin dot net>
  4. * Copyright (c) 2013-2022 Fred Klassen <tcpreplay at appneta dot com> - AppNeta
  5. *
  6. * The Tcpreplay Suite of tools is free software: you can redistribute it
  7. * and/or modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation, either version 3 of the
  9. * License, or with the authors permission any later version.
  10. *
  11. * The Tcpreplay Suite is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with the Tcpreplay Suite. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef __GET_H__
  20. #define __GET_H__
  21. #include "config.h"
  22. #include "defines.h"
  23. #include "common.h"
  24. int parse_mpls(const u_char *pktdata,
  25. const uint32_t datalen,
  26. uint16_t *protocol,
  27. uint32_t *l2len,
  28. uint32_t *l2offset);
  29. int parse_vlan(const u_char *pktdata,
  30. const uint32_t datalen,
  31. uint16_t *next_protocol,
  32. uint32_t *l2len);
  33. int get_l2len(const u_char *pktdata, const int datalen, const int datalink);
  34. int get_l2len_protocol(const u_char *pktdata,
  35. const uint32_t datalen,
  36. const int datalink,
  37. uint16_t *protocol,
  38. uint32_t *l2len,
  39. uint32_t *l2offset,
  40. uint32_t *vlan_offset);
  41. void *get_layer4_v4(const ipv4_hdr_t *ip_hdr, const int l3len);
  42. void *get_layer4_v6(const ipv6_hdr_t *ip_hdr, const int l3len);
  43. u_int8_t get_ipv6_l4proto(const ipv6_hdr_t *ip6_hdr, const int l3len);
  44. void *get_ipv6_next(struct tcpr_ipv6_ext_hdr_base *exthdr, const int l3len);
  45. const u_char *get_ipv4(const u_char *pktdata, int datalen, int datalink, u_char **newbuff);
  46. const u_char *get_ipv6(const u_char *pktdata, int datalen, int datalink, u_char **newbuff);
  47. u_int32_t get_name2addr4(const char *hostname, bool dnslookup);
  48. const char *get_addr2name4(const u_int32_t ip, bool dnslookup);
  49. const char *get_addr2name6(const struct tcpr_in6_addr *addr, bool dnslookup);
  50. const char *get_pcap_version(void);
  51. int get_name2addr6(const char *hostname, bool dnslookup, struct tcpr_in6_addr *addr);
  52. const char *get_cidr2name(const tcpr_cidr_t *cidr_ptr, bool dnslookup);
  53. #endif