Wireshark
4.5.0
The Wireshark network protocol analyzer
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
Variables
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
m
o
p
r
s
t
u
v
w
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
Typedefs
a
b
c
d
e
f
g
h
i
m
p
r
s
t
u
v
w
Enumerations
Enumerator
a
b
c
e
f
h
i
n
o
r
s
t
w
Macros
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
epan
dissectors
packet-smpp.h
1
/* packet-smpp.h
2
* Routines for Short Message Peer to Peer dissection
3
* Copyright 2001, Tom Uijldert.
4
*
5
* Data Coding Scheme decoding for GSM (SMS and CBS),
6
* provided by Olivier Biot.
7
*
8
* Dissection of multiple SMPP PDUs within one packet
9
* provided by Chris Wilson.
10
*
11
* Refer to the AUTHORS file or the AUTHORS section in the man page
12
* for contacting the author(s) of this file.
13
*
14
* Wireshark - Network traffic analyzer
15
* By Gerald Combs <gerald@wireshark.org>
16
* Copyright 1998 Gerald Combs
17
*
18
* SPDX-License-Identifier: GPL-2.0-or-later
19
* ----------
20
*
21
* Dissector of an SMPP (Short Message Peer to Peer) PDU, as defined by the
22
* SMS forum (www.smsforum.net) in "SMPP protocol specification v3.4"
23
* (document version: 12-Oct-1999 Issue 1.2)
24
*/
25
26
#ifndef __PACKET_SMPP_H_
27
#define __PACKET_SMPP_H_
28
29
#include "packet-gsm_sms.h"
30
31
typedef
struct
_smpp_data_t
{
32
bool
udhi;
33
unsigned
encoding;
34
gsm_sms_udh_fields_t
*udh_fields;
35
}
smpp_data_t
;
31
typedef
struct
_smpp_data_t
{
…
};
36
37
/*
38
* Export dissection of some parameters
39
*/
40
void
smpp_handle_dcs(
proto_tree
*tree,
tvbuff_t
*tvb,
int
*offset,
unsigned
*encoding);
41
42
43
/* Tap Record */
44
typedef
struct
_smpp_tap_rec_t
{
45
unsigned
command_id;
46
unsigned
command_status;
47
}
smpp_tap_rec_t
;
44
typedef
struct
_smpp_tap_rec_t
{
…
};
48
49
#endif
_proto_node
Definition
proto.h:906
_smpp_data_t
Definition
packet-smpp.h:31
_smpp_tap_rec_t
Definition
packet-smpp.h:44
gsm_sms_udh_fields_t
Definition
packet-gsm_sms.h:29
tvbuff
Definition
tvbuff-int.h:35
Generated by
1.9.8