summaryrefslogtreecommitdiffstats
path: root/include/osmo_util.hrl
blob: 34f7e0601f757f5ef404b0be6cbb0964afe6ed1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-type prim_spec_name() :: 'request' | 'response' | 'confirm' | 'indication'.

% a primitive how it is used inside the SCCP stack and to the user
-record(primitive, {
	  subsystem,
	  gen_name,
	  spec_name :: prim_spec_name(),
	  parameters
	}).

-type pointcode_repr() :: 'itu' | 'ansi' | 'ttc'.

-record(pointcode, {
	repr :: pointcode_repr(),
	value
}).