blob: 11094ec87e47b8dcb214b1eafb02361998abc870 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* packet-p22.h
* Routines for X.420 (X.400 Message Transfer) packet dissection
* Graeme Lunt 2005
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PACKET_P22_H
#define PACKET_P22_H
#include "packet-p22-exp.h"
void proto_reg_handoff_p22(void);
void proto_register_p22(void);
#endif /* PACKET_P22_H */
|