blob: 30a5ea62f27ff927653330eb1b883f9b87a63c7f [file] [log] [blame]
Holger Hans Peter Freyther97f66e22010-07-28 03:32:52 +08001/*
Holger Hans Peter Freytherddf8eae2011-01-22 17:36:01 +01002 * (C) 2010-2011 by Holger Hans Peter Freyther <zecke@selfish.org>
3 * (C) 2010-2011 by On-Waves
Holger Hans Peter Freyther97f66e22010-07-28 03:32:52 +08004 * All Rights Reserved
5 *
Holger Hans Peter Freytherde56c222011-01-16 17:45:14 +01006 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
Holger Hans Peter Freyther97f66e22010-07-28 03:32:52 +08009 * (at your option) any later version.
10 *
11 * This program 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
Holger Hans Peter Freytherde56c222011-01-16 17:45:14 +010014 * GNU Affero General Public License for more details.
Holger Hans Peter Freyther97f66e22010-07-28 03:32:52 +080015 *
Holger Hans Peter Freytherde56c222011-01-16 17:45:14 +010016 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Holger Hans Peter Freyther97f66e22010-07-28 03:32:52 +080018 *
19 */
20#ifndef mtp_pcap_h
21#define mtp_pcap_h
22
Holger Hans Peter Freythercbf7d182010-07-31 05:25:35 +080023#include <stdint.h>
Holger Hans Peter Freyther97f66e22010-07-28 03:32:52 +080024
25int mtp_pcap_write_header(int fd);
Holger Hans Peter Freyther5aa17012010-07-31 04:37:26 +080026int mtp_pcap_write_msu(int fd, const uint8_t *data, int length);
Holger Hans Peter Freyther97f66e22010-07-28 03:32:52 +080027
28#endif