aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rtp.h
diff options
context:
space:
mode:
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2004-07-18 18:06:47 +0000
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2004-07-18 18:06:47 +0000
commit35a6e092c3153cc7fbd1337c2230d596b0f7abcb (patch)
tree4eff24a2e16c8963e497e1fc575f35e6af59bd26 /packet-rtp.h
parent8dd1ee5ef22a787f4035d68e8e2ec8371fd23266 (diff)
Move dissectors to epan/dissectors directory.
Also move ncp222.py, x11-fields, process-x11-fields.pl, make-reg-dotc, and make-reg-dotc.py. Adjust #include lines in files that include packet-*.h files. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11410 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-rtp.h')
-rw-r--r--packet-rtp.h65
1 files changed, 0 insertions, 65 deletions
diff --git a/packet-rtp.h b/packet-rtp.h
deleted file mode 100644
index 788e060f1c..0000000000
--- a/packet-rtp.h
+++ /dev/null
@@ -1,65 +0,0 @@
-/* packet-rtp.h
- *
- * Routines for RTP dissection
- * RTP = Real time Transport Protocol
- *
- * $Id$
- *
- * Copyright 2000, Philips Electronics N.V.
- * Written by Andreas Sikkema <andreas.sikkema@philips.com>
- *
- * Ethereal - Network traffic analyzer
- * By Gerald Combs <gerald@ethereal.com>
- * Copyright 1998 Gerald Combs
- *
- * This program 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 2
- * of the License, or (at your option) any later version.
- *
- * This program 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-struct _rtp_info {
- gboolean info_padding_set;
- gboolean info_marker_set;
- unsigned int info_payload_type;
- unsigned int info_padding_count;
- guint16 info_seq_num;
- guint32 info_timestamp;
- guint32 info_sync_src;
- guint info_data_len; /* length of raw rtp data as reported */
- gboolean info_all_data_present; /* FALSE if data is cut off */
- guint info_payload_offset; /* start of payload relative to info_data */
- guint info_payload_len; /* length of payload (incl padding) */
- const guint8* info_data; /* pointer to raw rtp data */
- /*
- * info_data: pointer to raw rtp data = header + payload incl. padding.
- * That should be safe because the "epan_dissect_t" constructed for the packet
- * has not yet been freed when the taps are called.
- * (destroying the "epan_dissect_t" will end up freeing all the tvbuffs
- * and hence invalidating pointers to their data).
- * See "add_packet_to_packet_list()" for details.
- */
-};
-
-/* Info to save in RTP conversation / packet-info */
-#define MAX_RTP_SETUP_METHOD_SIZE 8
-struct _rtp_conversation_info
-{
- gchar method[MAX_RTP_SETUP_METHOD_SIZE];
- guint32 frame_number;
-};
-
-/* Add an RTP conversation with the given details */
-void rtp_add_address(packet_info *pinfo,
- const unsigned char* ip_addr, int port,
- int other_port,
- gchar *setup_method, guint32 setup_frame_number);