blob: 7af32fc7f82fb30afd7bf3cb3be78ca25ec83d70 [file] [log] [blame]
Pau Espin Pedrol4faff9e2019-05-06 19:29:11 +02001#pragma once
2
3enum osmux_usage {
4 /* MSC won't use Osmux in call legs towards its RAN */
5 OSMUX_USAGE_OFF = 0,
6 /* MSC will use Osmux in call legs towards RAN as long as RAN announced support for it */
7 OSMUX_USAGE_ON = 1,
8 /* MSC will always use Osmux in call legs towards its RAN, and will
9 reject calls for RANs which didn't announce support for it */
10 OSMUX_USAGE_ONLY = 2,
11};