MNCC: Make sure all unused fields are set to omit, not 'unbound'

Change-Id: I0ef3afa19d4ad5e011a7c0d86f8367461608e163
This commit is contained in:
Harald Welte 2018-01-17 13:58:26 +01:00
parent 251b52b71c
commit 8a10e8656d
1 changed files with 5 additions and 0 deletions

View File

@ -218,6 +218,11 @@ MNCC__PDU dec__MNCC__PDU(const OCTETSTRING& in)
in_mncc = (struct gsm_mncc *) ttcn_buffer.get_read_data();
sign.set_implicit_omit();
hello.set_implicit_omit();
data.set_implicit_omit();
rtp.set_implicit_omit();
switch (in_mncc->msg_type) {
case MNCC_SOCKET_HELLO:
in_hello = (const struct gsm_mncc_hello *) in_mncc;