123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /* $Id$ */
- /*
- * Copyright (c) 2001-2010 Aaron Turner <aturner at synfin dot net>
- * Copyright (c) 2013-2018 Fred Klassen <tcpreplay at appneta dot com> - AppNeta
- *
- * The Tcpreplay Suite of tools is free software: you can redistribute it
- * and/or modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or with the authors permission any later version.
- *
- * The Tcpreplay Suite is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with the Tcpreplay Suite. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef _EDIT_PACKETS_H_
- #define _EDIT_PACKETS_H_
- #include "tcpedit.h"
- #include "common.h"
- int untrunc_packet(tcpedit_t *tcpedit, struct pcap_pkthdr *pkthdr,
- u_char **pktdata, ipv4_hdr_t *ip_hdr, ipv6_hdr_t *ip6_hdr);
- int randomize_ipv4(tcpedit_t *tcpedit, struct pcap_pkthdr *pktdhr,
- u_char *pktdata, ipv4_hdr_t *ip_hdr, const int l3len);
- int randomize_ipv6(tcpedit_t *tcpedit, struct pcap_pkthdr *pktdhr,
- u_char *pktdata, ipv6_hdr_t *ip_hdr, const int l3len);
- int randomize_iparp(tcpedit_t *tcpedit, struct pcap_pkthdr *pkthdr,
- u_char *pktdata, int datalink, const int l3len);
- int fix_ipv4_checksums(tcpedit_t *tcpedit, struct pcap_pkthdr *pkdhdr,
- ipv4_hdr_t *ip_hdr);
- int fix_ipv6_checksums(tcpedit_t *tcpedit, struct pcap_pkthdr *pkdhdr,
- ipv6_hdr_t *ip_hdr);
- void fix_ipv4_length(struct pcap_pkthdr *pkthdr, ipv4_hdr_t *ip_hdr);
- void fix_ipv6_length(struct pcap_pkthdr *pkthdr, ipv6_hdr_t *ip6_hdr);
- int extract_data(tcpedit_t *tcpedit, const u_char *pktdata,
- int caplen, char *l7data[]);
- int rewrite_ipv4l3(tcpedit_t *tcpedit, ipv4_hdr_t *ip_hdr, tcpr_dir_t direction,
- int l3len);
- int rewrite_ipv6l3(tcpedit_t *tcpedit, ipv6_hdr_t *ip_hdr, tcpr_dir_t direction,
- int l3len);
- int rewrite_iparp(tcpedit_t *tcpedit, arp_hdr_t *arp_hdr, int direction);
- int rewrite_ipv4_ttl(tcpedit_t *tcpedit, ipv4_hdr_t *ip_hdr);
- int rewrite_ipv6_hlim(tcpedit_t *tcpedit, ipv6_hdr_t *ip6_hdr);
- #define BROADCAST_IP 4294967295
- #endif
|