-
-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathrtpp_record_private.h
More file actions
150 lines (133 loc) · 4.55 KB
/
rtpp_record_private.h
File metadata and controls
150 lines (133 loc) · 4.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/*
* Copyright (c) 2004-2006 Maxim Sobolev <sobomax@FreeBSD.org>
* Copyright (c) 2006-2007 Sippy Software, Inc., http://www.sippysoft.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
#ifndef _RTPP_RECORD_PRIVATE_H_
#define _RTPP_RECORD_PRIVATE_H_
#define DLT_NULL 0
#define DLT_EN10MB 1
#define DLT_RAW 101
#define PCAP_MAGIC 0xa1b2c3d4
#define PCAP_VER_MAJR 2
#define PCAP_VER_MINR 4
#define ETHERTYPE_INET htons(0x0800)
#define ETHERTYPE_INET6 htons(0x86DD)
/* Global PCAP Header */
typedef struct pcap_hdr_s {
uint32_t magic_number; /* magic number */
uint16_t version_major; /* major version number */
uint16_t version_minor; /* minor version number */
int32_t thiszone; /* GMT to local correction */
uint32_t sigfigs; /* accuracy of timestamps */
uint32_t snaplen; /* max length of captured packets, in octets */
uint32_t network; /* data link type */
} pcap_hdr_t;
/* PCAP Packet Header */
typedef struct pcaprec_hdr_s {
uint32_t ts_sec; /* timestamp seconds */
uint32_t ts_usec; /* timestamp microseconds */
uint32_t incl_len; /* number of octets of packet saved in file */
uint32_t orig_len; /* actual length of packet */
} pcaprec_hdr_t;
struct udpip {
struct ip iphdr;
struct udphdr udphdr;
} __attribute__((__packed__));
#if !defined(IPV6_DEFHLIM)
# define IPV6_DEFHLIM 64 /* default hlim */
#endif
#if !defined(IPV6_VERSION)
# define IPV6_VERSION 0x60
#endif
struct udpip6 {
struct ip6_hdr iphdr;
struct udphdr udphdr;
} __attribute__((__packed__));
struct layer2_hdr {
uint8_t dhost[6];
uint8_t shost[6];
uint16_t type;
} __attribute__((__packed__));
/*
* Recorded data header
*/
struct pkt_hdr_pcap_null {
pcaprec_hdr_t pcaprec_hdr;
uint32_t family;
struct udpip udpip;
} __attribute__((__packed__));
struct pkt_hdr_pcap_null_v6 {
pcaprec_hdr_t pcaprec_hdr;
uint32_t family;
struct udpip6 udpip6;
} __attribute__((__packed__));
struct pkt_hdr_pcap_raw {
pcaprec_hdr_t pcaprec_hdr;
struct udpip udpip;
} __attribute__((__packed__));
struct pkt_hdr_pcap_raw_v6 {
pcaprec_hdr_t pcaprec_hdr;
struct udpip6 udpip6;
} __attribute__((__packed__));
struct pkt_hdr_pcap_en10t {
pcaprec_hdr_t pcaprec_hdr;
struct layer2_hdr ether;
struct udpip udpip;
} __attribute__((__packed__));
struct pkt_hdr_pcap_en10t_v6 {
pcaprec_hdr_t pcaprec_hdr;
struct layer2_hdr ether;
struct udpip6 udpip6;
} __attribute__((__packed__));
union pkt_hdr_pcap {
struct pkt_hdr_pcap_null null;
struct pkt_hdr_pcap_null_v6 null_v6;
struct pkt_hdr_pcap_raw raw;
struct pkt_hdr_pcap_raw_v6 raw_v6;
struct pkt_hdr_pcap_en10t en10t;
struct pkt_hdr_pcap_en10t_v6 en10t_v6;
};
/* Stripped down version of sockaddr_in* for saving space */
struct sockaddr_in4_s {
sa_family_t sin_family;
in_port_t sin_port;
struct in_addr sin_addr;
};
struct sockaddr_in6_s {
sa_family_t sin_family;
in_port_t sin_port;
struct in6_addr sin_addr;
};
union sockaddr_in_s {
struct sockaddr_in4_s in4;
struct sockaddr_in6_s in6;
};
struct pkt_hdr_adhoc {
union sockaddr_in_s addr; /* Source address */
double time; /* Time of arrival */
unsigned short plen; /* Length of following RTP/RTCP packet */
} __attribute__((__packed__));
#endif