summaryrefslogtreecommitdiffstats
path: root/include/coms.h
blob: 83d088c8d488e30f7780e1aaf050cb4babd26a8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * DECT Connection Oriented Message Service (COMS)
 *
 * Copyright (c) 2009-2010 Patrick McHardy <kaber@trash.net>
 */

#ifndef _LIBDECT_COMS_H
#define _LIBDECT_COMS_H

/* COMS message types */
enum dect_coms_msg_types {
	DECT_COMS_SETUP				= 0x5,
	DECT_COMS_CONNECT			= 0x7,
	DECT_COMS_NOTIFY			= 0x8,
	DECT_COMS_RELEASE			= 0x4d,
	DECT_COMS_RELEASE_COM			= 0x5a,
	DECT_COMS_INFO				= 0x7b,
	DECT_COMS_ACK				= 0x78,
};

#endif /* _LIBDECT_COMS_H */