From e37ba2bf2e5a538b466554d113e7e43aef0376bb Mon Sep 17 00:00:00 2001 From: Matias Fontanini Date: Fri, 2 Sep 2011 22:31:20 -0300 Subject: [PATCH] Added header that includes all of the available Tins headers. --- include/tins.h | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 include/tins.h diff --git a/include/tins.h b/include/tins.h new file mode 100644 index 0000000..a2254a0 --- /dev/null +++ b/include/tins.h @@ -0,0 +1,43 @@ +/* + * libtins is a net packet wrapper library for crafting and + * interpreting sniffed packets. + * + * Copyright (C) 2011 Nasel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef __TINS_H +#define __TINS_H + +#include "arp.h" +#include "bootp.h" +#include "dhcp.h" +#include "eapol.h" +#include "ethernetII.h" +#include "icmp.h" +#include "ieee802-11.h" +#include "ip.h" +#include "packetsender.h" +#include "pdu.h" +#include "radiotap.h" +#include "rawpdu.h" +#include "snap.h" +#include "sniffer.h" +#include "tcp.h" +#include "udp.h" +#include "utils.h" + +#endif