libosmogsm  1.5.1.118-645a
Osmocom GSM library
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
gsm_08_58.h
Go to the documentation of this file.
1 
4 /*
5  * (C) 2008 by Harald Welte <laforge@gnumonks.org>
6  * All Rights Reserved
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with this program; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  *
22  */
23 
24 #pragma once
25 
26 #include <stdint.h>
27 
28 #include <osmocom/core/endian.h>
29 
34 /* Channel Number 9.3.1 */
36 #if OSMO_IS_BIG_ENDIAN
37  uint8_t cbits:5,
38  tn:3;
39 #elif OSMO_IS_LITTLE_ENDIAN
40  uint8_t tn:3,
41  cbits:5;
42 #endif
43  uint8_t chan_nr;
44 } __attribute__ ((packed));
45 #define ABIS_RSL_CHAN_NR_CBITS_Bm_ACCHs 0x01
46 #define ABIS_RSL_CHAN_NR_CBITS_Lm_ACCHs(ss) (0x02 + (ss))
47 #define ABIS_RSL_CHAN_NR_CBITS_SDCCH4_ACCH(ss) (0x04 + (ss))
48 #define ABIS_RSL_CHAN_NR_CBITS_SDCCH8_ACCH(ss) (0x08 + (ss))
49 #define ABIS_RSL_CHAN_NR_CBITS_BCCH 0x10
50 #define ABIS_RSL_CHAN_NR_CBITS_RACH 0x11
51 #define ABIS_RSL_CHAN_NR_CBITS_PCH_AGCH 0x12
52 #define ABIS_RSL_CHAN_NR_CBITS_OSMO_PDCH 0x18 /*< non-standard, for dyn TS */
53 #define ABIS_RSL_CHAN_NR_CBITS_OSMO_CBCH4 0x19 /*< non-standard, for CBCH/SDCCH4 */
54 #define ABIS_RSL_CHAN_NR_CBITS_OSMO_CBCH8 0x1a /*< non-standard, for CBCH/SDCCH8 */
55 
56 /* Link Identifier 9.3.2 */
58 #if OSMO_IS_BIG_ENDIAN
59  uint8_t cbits:2,
60  na:1,
61  reserved:2,
62  sapi:3;
63 #elif OSMO_IS_LITTLE_ENDIAN
64  uint8_t sapi:3,
65  reserved:2,
66  na:1,
67  cbits:2;
68 #endif
69  uint8_t link_id;
70 } __attribute__ ((packed));
71 #define ABIS_RSL_LINK_ID_CBITS_FACCH_SDCCH 0x00
72 #define ABIS_RSL_LINK_ID_CBITS_SACCH 0x01
73 
76  uint8_t msg_discr;
77  uint8_t msg_type;
78  uint8_t data[0];
79 } __attribute__ ((packed));
80 
81 /* RSL RLL header (Chapter 8.3) */
84  uint8_t ie_chan;
85  union {
86  uint8_t chan_nr; /* API backward compat */
88  };
89  uint8_t ie_link_id;
90  union {
91  uint8_t link_id; /* API backward compat */
93  };
94  uint8_t data[0];
95 } __attribute__ ((packed));
96 
97 /* RSL Dedicated Channel header (Chapter 8.3 and 8.4) */
100  uint8_t ie_chan;
101  union {
102  uint8_t chan_nr; /* API backward compat */
104  };
105  uint8_t data[0];
106 } __attribute__ ((packed));
107 
108 /* RSL Common Channel header (Chapter 8.5) */
111  uint8_t ie_chan;
112  union {
113  uint8_t chan_nr; /* API backward compat */
115  };
116  uint8_t data[0];
117 } __attribute__ ((packed));
118 
119 /* Osmocom specific IE to negotiate repeated ACCH capabilities */
121 #if OSMO_IS_BIG_ENDIAN
122  uint8_t reserved:1,
123  rxqual:3,
124  ul_sacch:1,
125  dl_sacch:1,
126  dl_facch_all:1,
127  dl_facch_cmd:1;
128 #elif OSMO_IS_LITTLE_ENDIAN
129  uint8_t dl_facch_cmd:1,
130  dl_facch_all:1,
131  dl_sacch:1,
132  ul_sacch:1,
133  rxqual:3,
134  reserved:1;
135 #endif
136 } __attribute__ ((packed));
137 
138 /* Chapter 9.1 */
139 /* RSL Message Discriminator: RLL */
140 #define ABIS_RSL_MDISC_RLL 0x02
141 /* RSL Message Discriminator: Dedicated Channel */
142 #define ABIS_RSL_MDISC_DED_CHAN 0x08
143 /* RSL Message Discriminator: Common Channel */
144 #define ABIS_RSL_MDISC_COM_CHAN 0x0c
145 /* RSL Message Discriminator: TRX Management */
146 #define ABIS_RSL_MDISC_TRX 0x10
147 /* RSL Message Discriminator: Location Service */
148 #define ABIS_RSL_MDISC_LOC 0x20
149 /* RSL Message Discriminator: ip.access */
150 #define ABIS_RSL_MDISC_IPACCESS 0x7e
151 #define ABIS_RSL_MDISC_TRANSP 0x01
152 
153 /* Check if given RSL message discriminator is transparent */
154 #define ABIS_RSL_MDISC_IS_TRANSP(x) (x & 0x01)
155 
156 /* RSL Message Type (Chapter 9.1) */
158  /* Radio Link Layer Management */
170  RSL_MT_SUSP_REQ, /* non-standard elements */
173  RSL_MT_RECON_REQ, /* 0x0f */
174 
175  /* Common Channel Management / TRX Management */
183  RSL_MT_CHAN_CONF, /* non-standard element */
184  /* empty */
191  RSL_MT_NOT_CMD, /* 0x1f */
192 
193  /* Dedicate Channel Management */
224  RSL_MT_TFO_MOD_REQ, /* 0x3f */
226 
227  /* ip.access specific RSL message types */
244  RSL_MT_IPAC_MEAS_PREPROC_DFT = 0x60, /*Extented Common Channel Management */
247  RSL_MT_IPAC_CRCX = 0x70, /* Bind to local BTS RTP port */
257 
259 };
260 
279 };
280 
284 };
285 
316  /* reserved */
322  RSL_IE_IMM_ASS_INFO, /* Phase 1 (3.6.0), later Full below */
348  /* Siemens vendor-specific */
357 
358  /* Osmocom specific */
360 
361  /* ip.access */
380 };
381 
382 /* Ericsson specific IEs, clash with above partially, so they're not
383  * part of the enum */
384 #define RSL_IE_ERIC_PAGING_GROUP 0x0e
385 #define RSL_IE_ERIC_INST_NR 0x48
386 #define RSL_IE_ERIC_PGSL_TIMERS 0x49
387 #define RSL_IE_ERIC_REPEAT_DL_FACCH 0x4a
388 #define RSL_IE_ERIC_POWER_INFO 0xf0
389 #define RSL_IE_ERIC_MOBILE_ID 0xf1
390 #define RSL_IE_ERIC_BCCH_MAPPING 0xf2
391 #define RSL_IE_ERIC_PACKET_PAG_IND 0xf3
392 #define RSL_IE_ERIC_CNTR_CTRL 0xf4
393 #define RSL_IE_ERIC_CNTR_CTRL_ACK 0xf5
394 #define RSL_IE_ERIC_CNTR_REPORT 0xf6
395 #define RSL_IE_ERIC_ICP_CONN 0xf7
396 #define RSL_IE_ERIC_EMR_SUPPORT 0xf8
397 #define RSL_IE_ERIC_EGPRS_REQ_REF 0xf9
398 #define RSL_IE_ERIC_VGCS_REL 0xfa
399 #define RSL_IE_ERIC_REP_PER_NCH 0xfb
400 #define RSL_IE_ERIC_NY2 0xfc
401 #define RSL_IE_ERIC_T3115 0xfd
402 #define RSL_IE_ERIC_ACTIVATE_FLAG 0xfe
403 #define RSL_IE_ERIC_FULL_NCH_INFO 0xff
404 
405 /* IPAC MEAS_PREPROC AVERAGING METHOD */
406 enum {
410  /* EWMA is an Osmocom specific extension */
412 };
413 
414 /* IPAC MEAS_PREPROC AVERAGING PARAMID */
415 enum {
419 };
420 
421 /* IPAC MEAS_PREPROC HO CAUSES */
422 enum {
441 };
442 
443 /* Chapter 9.3.1 */
444 #define RSL_CHAN_NR_MASK 0xf8
445 #define RSL_CHAN_NR_1 0x08 /*< bit to add for 2nd,... lchan */
446 #define RSL_CHAN_Bm_ACCHs 0x08
447 #define RSL_CHAN_Lm_ACCHs 0x10 /* .. 0x18 */
448 #define RSL_CHAN_SDCCH4_ACCH 0x20 /* .. 0x38 */
449 #define RSL_CHAN_SDCCH8_ACCH 0x40 /* ...0x78 */
450 #define RSL_CHAN_BCCH 0x80
451 #define RSL_CHAN_RACH 0x88
452 #define RSL_CHAN_PCH_AGCH 0x90
453 #define RSL_CHAN_OSMO_PDCH 0xc0 /*< non-standard, for dyn TS */
454 #define RSL_CHAN_OSMO_CBCH4 0xc8 /*< non-standard, for CBCH/SDCCH4 */
455 #define RSL_CHAN_OSMO_CBCH8 0xd0 /*< non-standard, for CBCH/SDCCH8 */
456 
457 /* Chapter 9.3.3 */
458 #define RSL_ACT_TYPE_INITIAL 0x00
459 #define RSL_ACT_TYPE_REACT 0x80
460 #define RSL_ACT_INTRA_IMM_ASS 0x00
461 #define RSL_ACT_INTRA_NORM_ASS 0x01
462 #define RSL_ACT_INTER_ASYNC 0x02
463 #define RSL_ACT_INTER_SYNC 0x03
464 #define RSL_ACT_SECOND_ADD 0x04
465 #define RSL_ACT_SECOND_MULTI 0x05
466 #define RSL_ACT_OSMO_PDCH 0x0f /*< non-standard, for dyn TS */
467 
470  uint8_t dtx_dtu;
471  uint8_t spd_ind;
472  uint8_t chan_rt;
473  uint8_t chan_rate;
474 } __attribute__ ((packed));
475 #define RSL_CMOD_DTXu 0x01 /* uplink */
476 #define RSL_CMOD_DTXd 0x02 /* downlink */
481 };
482 #define RSL_CMOD_CRT_SDCCH 0x01
483 #define RSL_CMOD_CRT_TCH_Bm 0x08 /* full-rate */
484 #define RSL_CMOD_CRT_TCH_Lm 0x09 /* half-rate */
485 #define RSL_CMOD_CRT_TCH_BI_Bm 0x0a /* full-rate: bi-directional (multislot) */
486 #define RSL_CMOD_CRT_TCH_UNI_Bm 0x1a /* full-rate: uni-directional (multislot) */
487 #define RSL_CMOD_CRT_TCH_GROUP_Bm 0x18 /* full-rate: group call channel */
488 #define RSL_CMOD_CRT_TCH_GROUP_Lm 0x19 /* half-rate: group call channel */
489 #define RSL_CMOD_CRT_TCH_BCAST_Bm 0x28 /* full-rate: broadcast call channel */
490 #define RSL_CMOD_CRT_TCH_BCAST_Lm 0x29 /* half-rate: broadcast call channel */
491 /* Speech */
492 #define RSL_CMOD_SP_GSM1 0x01
493 #define RSL_CMOD_SP_GSM2 0x11
494 #define RSL_CMOD_SP_GSM3 0x21
495 #define RSL_CMOD_SP_GSM4 0x31
496 #define RSL_CMOD_SP_GSM5 0x09
497 #define RSL_CMOD_SP_GSM6 0x0d
498 /* non-transparent data (asymmetric) */
499 #define RSL_CMOD_CSD_NTA_43k5_14k5 0x61 /* asymmetric 43.5 kbit/s (DL) + 14.5 kbit/s (UL) */
500 #define RSL_CMOD_CSD_NTA_29k0_14k5 0x62 /* asymmetric 29.0 kbit/s (DL) + 14.5 kbit/s (UL) */
501 #define RSL_CMOD_CSD_NTA_43k5_29k0 0x63 /* asymmetric 43.5 kbit/s (DL) + 29.0 kbit/s (UL) */
502 #define RSL_CMOD_CSD_NTA_14k5_43k5 0x69 /* asymmetric 14.5 kbit/s (DL) + 43.5 kbit/s (UL) */
503 #define RSL_CMOD_CSD_NTA_14k5_29k0 0x6a /* asymmetric 14.5 kbit/s (DL) + 29.0 kbit/s (UL) */
504 #define RSL_CMOD_CSD_NTA_29k0_43k5 0x6b /* asymmetric 29.0 kbit/s (DL) + 43.5 kbit/s (UL) */
505 /* non-transparent data */
506 #define RSL_CMOD_CSD_NT_43k5 0x74
507 #define RSL_CMOD_CSD_NT_28k8 0x71
508 #define RSL_CMOD_CSD_NT_14k5 0x58
509 #define RSL_CMOD_CSD_NT_12k0 0x50
510 #define RSL_CMOD_CSD_NT_6k0 0x51
511 /* legacy #defines with wrong name */
512 #define RSL_CMOD_SP_NT_14k5 RSL_CMOD_CSD_NT_14k5
513 #define RSL_CMOD_SP_NT_12k0 RSL_CMOD_CSD_NT_12k0
514 #define RSL_CMOD_SP_NT_6k0 RSL_CMOD_CSD_NT_6k0
515 /* transparent data */
516 #define RSL_CMOD_CSD_T_32000 0x38
517 #define RSL_CMOD_CSD_T_29000 0x39
518 #define RSL_CMOD_CSD_T_14400 0x18
519 #define RSL_CMOD_CSD_T_9600 0x10
520 #define RSL_CMOD_CSD_T_4800 0x11
521 #define RSL_CMOD_CSD_T_2400 0x12
522 #define RSL_CMOD_CSD_T_1200 0x13
523 #define RSL_CMOD_CSD_T_600 0x14
524 #define RSL_CMOD_CSD_T_1200_75 0x15
525 
528  /* GSM 04.08 10.5.2.5 */
529  struct {
530  uint8_t iei;
531  uint8_t chan_nr; /* enc_chan_nr */
532  uint8_t oct3;
533  uint8_t oct4;
535 #if 0 /* spec says we need this but Abissim doesn't use it */
536  struct {
537  uint8_t tag;
538  uint8_t len;
539  } mobile_alloc;
540 #endif
541 } __attribute__ ((packed));
542 
543 /* Chapter 9.3.22 */
544 #define RLL_CAUSE_T200_EXPIRED 0x01
545 #define RLL_CAUSE_REEST_REQ 0x02
546 #define RLL_CAUSE_UNSOL_UA_RESP 0x03
547 #define RLL_CAUSE_UNSOL_DM_RESP 0x04
548 #define RLL_CAUSE_UNSOL_DM_RESP_MF 0x05
549 #define RLL_CAUSE_UNSOL_SPRV_RESP 0x06
550 #define RLL_CAUSE_SEQ_ERR 0x07
551 #define RLL_CAUSE_UFRM_INC_PARAM 0x08
552 #define RLL_CAUSE_SFRM_INC_PARAM 0x09
553 #define RLL_CAUSE_IFRM_INC_MBITS 0x0a
554 #define RLL_CAUSE_IFRM_INC_LEN 0x0b
555 #define RLL_CAUSE_FRM_UNIMPL 0x0c
556 #define RLL_CAUSE_SABM_MF 0x0d
557 #define RLL_CAUSE_SABM_INFO_NOTALL 0x0e
558 
559 /* Chapter 9.3.26 */
560 #define RSL_ERRCLS_NORMAL 0x00
561 #define RSL_ERRCLS_RESOURCE_UNAVAIL 0x20
562 #define RSL_ERRCLS_SERVICE_UNAVAIL 0x30
563 #define RSL_ERRCLS_SERVICE_UNIMPL 0x40
564 #define RSL_ERRCLS_INVAL_MSG 0x50
565 #define RSL_ERRCLS_PROTO_ERROR 0x60
566 #define RSL_ERRCLS_INTERWORKING 0x70
567 
568 /* normal event */
569 #define RSL_ERR_RADIO_IF_FAIL 0x00
570 #define RSL_ERR_RADIO_LINK_FAIL 0x01
571 #define RSL_ERR_HANDOVER_ACC_FAIL 0x02
572 #define RSL_ERR_TALKER_ACC_FAIL 0x03
573 #define RSL_ERR_OM_INTERVENTION 0x07
574 #define RSL_ERR_NORMAL_UNSPEC 0x0f
575 #define RSL_ERR_T_MSRFPCI_EXP 0x18
576 /* resource unavailable */
577 #define RSL_ERR_EQUIPMENT_FAIL 0x20
578 #define RSL_ERR_RR_UNAVAIL 0x21
579 #define RSL_ERR_TERR_CH_FAIL 0x22
580 #define RSL_ERR_CCCH_OVERLOAD 0x23
581 #define RSL_ERR_ACCH_OVERLOAD 0x24
582 #define RSL_ERR_PROCESSOR_OVERLOAD 0x25
583 #define RSL_ERR_BTS_NOT_EQUIPPED 0x27
584 #define RSL_ERR_REMOTE_TRANSC_FAIL 0x28
585 #define RSL_ERR_NOTIFICATION_OVERFL 0x29
586 #define RSL_ERR_RES_UNAVAIL 0x2f
587 /* service or option not available */
588 #define RSL_ERR_TRANSC_UNAVAIL 0x30
589 #define RSL_ERR_SERV_OPT_UNAVAIL 0x3f
590 /* service or option not implemented */
591 #define RSL_ERR_ENCR_UNIMPL 0x40
592 #define RSL_ERR_SERV_OPT_UNIMPL 0x4f
593 /* invalid message */
594 #define RSL_ERR_RCH_ALR_ACTV_ALLOC 0x50
595 #define RSL_ERR_INVALID_MESSAGE 0x5f
596 /* protocol error */
597 #define RSL_ERR_MSG_DISCR 0x60
598 #define RSL_ERR_MSG_TYPE 0x61
599 #define RSL_ERR_MSG_SEQ 0x62
600 #define RSL_ERR_IE_ERROR 0x63
601 #define RSL_ERR_MAND_IE_ERROR 0x64
602 #define RSL_ERR_OPT_IE_ERROR 0x65
603 #define RSL_ERR_IE_NONEXIST 0x66
604 #define RSL_ERR_IE_LENGTH 0x67
605 #define RSL_ERR_IE_CONTENT 0x68
606 #define RSL_ERR_PROTO 0x6f
607 /* interworking */
608 #define RSL_ERR_INTERWORKING 0x7f
609 
610 /* Chapter 9.3.30 */
611 #define RSL_SYSTEM_INFO_8 0x00
612 #define RSL_SYSTEM_INFO_1 0x01
613 #define RSL_SYSTEM_INFO_2 0x02
614 #define RSL_SYSTEM_INFO_3 0x03
615 #define RSL_SYSTEM_INFO_4 0x04
616 #define RSL_SYSTEM_INFO_5 0x05
617 #define RSL_SYSTEM_INFO_6 0x06
618 #define RSL_SYSTEM_INFO_7 0x07
619 #define RSL_SYSTEM_INFO_16 0x08
620 #define RSL_SYSTEM_INFO_17 0x09
621 #define RSL_SYSTEM_INFO_2bis 0x0a
622 #define RSL_SYSTEM_INFO_2ter 0x0b
623 #define RSL_SYSTEM_INFO_5bis 0x0d
624 #define RSL_SYSTEM_INFO_5ter 0x0e
625 #define RSL_SYSTEM_INFO_10 0x0f
626 #define RSL_EXT_MEAS_ORDER 0x47
627 #define RSL_MEAS_INFO 0x48
628 #define RSL_SYSTEM_INFO_13 0x28
629 #define RSL_ERIC_SYSTEM_INFO_13 0x0C
630 #define RSL_SYSTEM_INFO_2quater 0x29
631 #define RSL_SYSTEM_INFO_9 0x2a
632 #define RSL_SYSTEM_INFO_18 0x2b
633 #define RSL_SYSTEM_INFO_19 0x2c
634 #define RSL_SYSTEM_INFO_20 0x2d
635 
636 /* Chapter 9.3.40 */
637 #define RSL_CHANNEED_ANY 0x00
638 #define RSL_CHANNEED_SDCCH 0x01
639 #define RSL_CHANNEED_TCH_F 0x02
640 #define RSL_CHANNEED_TCH_ForH 0x03
641 
644 #if OSMO_IS_LITTLE_ENDIAN
645  uint8_t last_block:2;
646  uint8_t spare:1;
647  uint8_t def_bcast:1;
648  uint8_t command:4;
649 #elif OSMO_IS_BIG_ENDIAN
650 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
651  uint8_t command:4, def_bcast:1, spare:1, last_block:2;
652 #endif
653 } __attribute__ ((packed));
654 /* ->command */
655 #define RSL_CB_CMD_TYPE_NORMAL 0x00
656 #define RSL_CB_CMD_TYPE_SCHEDULE 0x08
657 #define RSL_CB_CMD_TYPE_DEFAULT 0x0e
658 #define RSL_CB_CMD_TYPE_NULL 0x0f
659 /* ->def_bcast */
660 #define RSL_CB_CMD_DEFBCAST_NORMAL 0
661 #define RSL_CB_CMD_DEFBCAST_NULL 1
662 /* ->last_block */
663 #define RSL_CB_CMD_LASTBLOCK_4 0
664 #define RSL_CB_CMD_LASTBLOCK_1 1
665 #define RSL_CB_CMD_LASTBLOCK_2 2
666 #define RSL_CB_CMD_LASTBLOCK_3 3
667 
668 /* Chapter 3.3.2.3 Brocast control channel */
669 /* CCCH-CONF, NC is not combined */
670 #define RSL_BCCH_CCCH_CONF_1_NC 0x00
671 #define RSL_BCCH_CCCH_CONF_1_C 0x01
672 #define RSL_BCCH_CCCH_CONF_2_NC 0x02
673 #define RSL_BCCH_CCCH_CONF_3_NC 0x04
674 #define RSL_BCCH_CCCH_CONF_4_NC 0x06
675 
676 /* BS-PA-MFRMS */
677 #define RSL_BS_PA_MFRMS_2 0x00
678 #define RSL_BS_PA_MFRMS_3 0x01
679 #define RSL_BS_PA_MFRMS_4 0x02
680 #define RSL_BS_PA_MFRMS_5 0x03
681 #define RSL_BS_PA_MFRMS_6 0x04
682 #define RSL_BS_PA_MFRMS_7 0x05
683 #define RSL_BS_PA_MFRMS_8 0x06
684 #define RSL_BS_PA_MFRMS_9 0x07
685 
686 /* RSL_IE_IPAC_RTP_PAYLOAD[2] */
693 };
694 
695 /* RSL_IE_IPAC_SPEECH_MODE, lower four bits */
697  RSL_IPAC_SPEECH_GSM_FR = 0, /* GSM FR (Type 1, FS) */
698  RSL_IPAC_SPEECH_GSM_EFR = 1, /* GSM EFR (Type 2, FS) */
699  RSL_IPAC_SPEECH_GSM_AMR_FR = 2, /* GSM AMR/FR (Type 3, FS) */
700  RSL_IPAC_SPEECH_GSM_HR = 3, /* GSM HR (Type 1, HS) */
701  RSL_IPAC_SPEECH_GSM_AMR_HR = 5, /* GSM AMR/hr (Type 3, HS) */
702  RSL_IPAC_SPEECH_AS_RTP = 0xf, /* As specified by RTP Payload IE */
703 };
704 /* RSL_IE_IPAC_SPEECH_MODE, upper four bits */
706  RSL_IPAC_SPEECH_M_RXTX = 0, /* Send and Receive */
707  RSL_IPAC_SPEECH_M_RX = 1, /* Receive only */
708  RSL_IPAC_SPEECH_M_TX = 2, /* Send only */
709 };
710 
711 /* RSL_IE_IPAC_RTP_CSD_FMT, lower four bits */
717 };
718 /* RSL_IE_IPAC_RTP_CSD_FMT, upper four bits */
724 };
725 
726 /* Siemens vendor-specific RSL extensions */
727 struct rsl_mrpci {
728  uint8_t power_class:3,
729  vgcs_capable:1,
730  vbs_capable:1,
731  gsm_phase:2;
732 } __attribute__ ((packed));
733 
740 };
743  /* reserved */
746 };
747 
748 /* 9.3.20 Release Mode */
752 };
753 
777  /* additional IPAC measurement pre-processing related IEI */
783 
784 };
785 
787 #if OSMO_IS_LITTLE_ENDIAN
788  uint8_t h_reqave:5,
789  param_id:2,
790  reserved:1;
791  uint8_t h_reqt:5,
792  ave_method:3;
793  uint8_t params[0];
794 #elif OSMO_IS_BIG_ENDIAN
795 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
796  uint8_t reserved:1, param_id:2, h_reqave:5;
797  uint8_t ave_method:3, h_reqt:5;
798  uint8_t params[0];
799 #endif
800 }__attribute__ ((packed));
801 
804 #if OSMO_IS_LITTLE_ENDIAN
805  uint8_t l_rxlev:6, reserved_l_rxlev:2;
806  uint8_t u_rxlev:6, reserved_u_rxlev:2;
807  uint8_t u_rxqual:3, reserved_u_rxqual:1,
808  l_rxqual:3, reserved_l_rxqual:1;
809 #elif OSMO_IS_BIG_ENDIAN
810  uint8_t reserved_l_rxlev:2, l_rxlev:6;
811  uint8_t reserved_u_rxlev:2, u_rxlev:6;
812  uint8_t reserved_l_rxqual:1, l_rxqual:3,
813  reserved_u_rxqual:1, u_rxqual:3;
814 #endif
815 }__attribute__ ((packed));
816 
819 #if OSMO_IS_LITTLE_ENDIAN
820  uint8_t l_rxlev_ul_h:6,
821  reserved_l_rxlev_ul:2;
822  uint8_t l_rxlev_dl_h:6,
823  reserved_l_rxlev_dl:2;
824  uint8_t rxlev_ul_ih:6,
825  reserved_rxlev_ul:2;
826  uint8_t rxlev_dl_ih:6,
827  reserved_rxlev_dl:2;
828  uint8_t l_rxqual_ul_h:3,
829  reserved_rxlqual_ul:1,
830  l_rxqual_dl_h:3,
831  reserved_rxqual_dl:1;
832  uint8_t ms_range_max:6,
833  reserved_ms_range:2;
834 #elif OSMO_IS_BIG_ENDIAN
835 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
836  uint8_t reserved_l_rxlev_ul:2, l_rxlev_ul_h:6;
837  uint8_t reserved_l_rxlev_dl:2, l_rxlev_dl_h:6;
838  uint8_t reserved_rxlev_ul:2, rxlev_ul_ih:6;
839  uint8_t reserved_rxlev_dl:2, rxlev_dl_ih:6;
840  uint8_t reserved_rxqual_dl:1, l_rxqual_dl_h:3, reserved_rxlqual_ul:1, l_rxqual_ul_h:3;
841  uint8_t reserved_ms_range:2, ms_range_max:6;
842 #endif
843 }__attribute__ ((packed));
844 
847 #if OSMO_IS_LITTLE_ENDIAN
848  uint8_t p1:5, reserved_p1:3;
849  uint8_t n1:5, reserved_n1:3;
850  uint8_t p2:5, reserved_p2:3;
851  uint8_t n2:5, reserved_n2:3;
852  uint8_t p3:5, reserved_p3:3;
853  uint8_t n3:5, reserved_n3:3;
854  uint8_t p4:5, reserved_p4:3;
855  uint8_t n4:5, reserved_n4:3;
856  uint8_t pc_interval:5, reserved_pc:3;
857  uint8_t red_step_size:4, inc_step_size:4;
858 #elif OSMO_IS_BIG_ENDIAN
859  uint8_t reserved_p1:3, p1:5;
860  uint8_t reserved_n1:3, n1:5;
861  uint8_t reserved_p2:3, p2:5;
862  uint8_t reserved_n2:3, n2:5;
863  uint8_t reserved_p3:3, p3:5;
864  uint8_t reserved_n3:3, n3:5;
865  uint8_t reserved_p4:3, p4:5;
866  uint8_t reserved_n4:3, n4:5;
867  uint8_t reserved_pc:3, pc_interval:5;
868  uint8_t inc_step_size:4, red_step_size:4;
869 #endif
870 }__attribute__ ((packed));
871 
874 #if OSMO_IS_LITTLE_ENDIAN
875  uint8_t p5:5,
876  reserved_p5:3;
877  uint8_t n5:5,
878  reserved_n5:3;
879  uint8_t p6:5,
880  reserved_p6:3;
881  uint8_t n6:5,
882  reserved_n6:3;
883  uint8_t p7:5,
884  reserved_p7:3;
885  uint8_t n7:5,
886  reserved_n7:3;
887  uint8_t p8:5,
888  reserved_p8:3;
889  uint8_t n8:5,
890  reserved_n8:3;
891  uint8_t ho_interval:5,
892  reserved_ho:3;
893  uint8_t reserved;
894 
895 #elif OSMO_IS_BIG_ENDIAN
896 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
897  uint8_t reserved_p5:3, p5:5;
898  uint8_t reserved_n5:3, n5:5;
899  uint8_t reserved_p6:3, p6:5;
900  uint8_t reserved_n6:3, n6:5;
901  uint8_t reserved_p7:3, p7:5;
902  uint8_t reserved_n7:3, n7:5;
903  uint8_t reserved_p8:3, p8:5;
904  uint8_t reserved_n8:3, n8:5;
905  uint8_t reserved_ho:3, ho_interval:5;
906  uint8_t reserved;
907 #endif
908 }__attribute__ ((packed));
909 
911 #if OSMO_IS_LITTLE_ENDIAN
912  uint8_t bsic:6,
913  reserved0:2;
914  uint8_t bcch_freq:5,
915  ba_used:1,
916  s:1,
917  reserved1:1;
918 #elif OSMO_IS_BIG_ENDIAN
919 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
920  uint8_t reserved0:2, bsic:6;
921  uint8_t reserved1:1, s:1, ba_used:1, bcch_freq:5;
922 #endif
923 }__attribute__ ((packed));
924 
926 #if OSMO_IS_LITTLE_ENDIAN
927  uint8_t rxlev_min_def:6,
928  reserved_rxlev_min_def:2;
929  uint8_t ho_margin_def:5,
930  reserved_ho_margin_def:3;
931  uint8_t ms_txpwr_max_def:5,
932  reserved_ms_txpwr_max_def:3;
933 #elif OSMO_IS_BIG_ENDIAN
934 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
935  uint8_t reserved_rxlev_min_def:2, rxlev_min_def:6;
936  uint8_t reserved_ho_margin_def:3, ho_margin_def:5;
937  uint8_t reserved_ms_txpwr_max_def:3, ms_txpwr_max_def:5;
938 #endif
939 }__attribute__ ((packed));
940 
942 #if OSMO_IS_LITTLE_ENDIAN
943  uint8_t sdcch_ho_gsm:1,
944  sdcch_ho_umts:1,
945  reserved:6;
946 #elif OSMO_IS_BIG_ENDIAN
947 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
948  uint8_t reserved:6, sdcch_ho_umts:1, sdcch_ho_gsm:1;
949 #endif
950 }__attribute__ ((packed));
951 
953  uint8_t meas_rep_mode;
954  uint32_t meas_mode_flags;
961 };
962 
963 struct rsl_l1_info {
964 #if OSMO_IS_BIG_ENDIAN
965  uint8_t ms_pwr:5,
966  fpc_epc:1,
967  srr_sro:1,
968  reserved:1;
969  uint8_t ta;
970 #elif OSMO_IS_LITTLE_ENDIAN
971  uint8_t reserved:1,
972  srr_sro:1,
973  fpc_epc:1,
974  ms_pwr:5;
975  uint8_t ta;
976 #endif
977 } __attribute__ ((packed));
978 
Definition: gsm_08_58.h:170
Definition: gsm_08_58.h:346
Definition: gsm_08_58.h:255
Definition: gsm_08_58.h:246
Definition: gsm_08_58.h:204
Definition: gsm_08_58.h:366
Definition: gsm_08_58.h:177
Definition: gsm_08_58.h:168
Definition: gsm_08_58.h:218
uint8_t chan_rate
Definition: gsm_08_58.h:473
Definition: gsm_08_58.h:258
Definition: gsm_08_58.h:300
uint8_t oct3
Definition: gsm_08_58.h:532
Definition: gsm_08_58.h:189
Definition: gsm_08_58.h:432
struct abis_rsl_common_hdr c
Definition: gsm_08_58.h:83
Definition: gsm_08_58.h:172
Definition: gsm_08_58.h:274
Definition: gsm_08_58.h:320
Definition: gsm_08_58.h:325
struct abis_rsl_common_hdr c
Definition: gsm_08_58.h:99
Definition: gsm_08_58.h:738
Definition: gsm_08_58.h:208
Definition: gsm_08_58.h:265
Definition: gsm_08_58.h:372
Definition: gsm_08_58.h:213
RSL Channel Mode IF (Chapter 9.3.6)
Definition: gsm_08_58.h:469
Definition: gsm_08_58.h:198
Definition: gsm_08_58.h:952
Definition: gsm_08_58.h:701
Definition: gsm_08_58.h:230
uint8_t chan_rt
Definition: gsm_08_58.h:472
Definition: gsm_08_58.h:345
Definition: gsm_08_58.h:296
Definition: gsm_08_58.h:330
Definition: gsm_08_58.h:723
Definition: gsm_08_58.h:778
Definition: gsm_08_58.h:191
Definition: gsm_08_58.h:216
Definition: gsm_08_58.h:379
Definition: gsm_08_58.h:195
Definition: gsm_08_58.h:714
rsl_ipac_rtp_csd_format_d
Definition: gsm_08_58.h:712
Definition: gsm_08_58.h:221
RSL Channel Identification IE (Chapter 9.3.5)
Definition: gsm_08_58.h:527
struct ipac_preproc_ho_thresh ho_thresh
Definition: gsm_08_58.h:957
Definition: gsm_08_58.h:187
Definition: gsm_08_58.h:199
Definition: gsm_08_58.h:313
Definition: gsm_08_58.h:326
Definition: gsm_08_58.h:271
uint8_t ie_chan
RSL_IE_CHAN_NR (tag)
Definition: gsm_08_58.h:100
Definition: gsm_08_58.h:352
Definition: gsm_08_58.h:180
Definition: gsm_08_58.h:290
Definition: gsm_08_58.h:190
Definition: gsm_08_58.h:173
Definition: gsm_08_58.h:319
rsl_rel_mode
Definition: gsm_08_58.h:749
Definition: gsm_08_58.h:309
Definition: gsm_08_58.h:159
Definition: gsm_08_58.h:299
Definition: gsm_08_58.h:278
Definition: gsm_08_58.h:351
Definition: gsm_08_58.h:439
Definition: gsm_08_58.h:197
Definition: gsm_08_58.h:762
Definition: gsm_08_58.h:780
Definition: gsm_08_58.h:378
rsl_mrpci_pwrclass
Definition: gsm_08_58.h:734
rsl_mrpci_phase
Definition: gsm_08_58.h:741
Definition: gsm_08_58.h:223
Definition: gsm_08_58.h:333
Definition: gsm_08_58.h:266
Definition: gsm_08_58.h:311
Definition: gsm_08_58.h:430
rsl_ipac_speech_mode_s
Definition: gsm_08_58.h:696
Definition: gsm_08_58.h:254
Definition: gsm_08_58.h:408
Definition: gsm_08_58.h:314
Definition: gsm_08_58.h:303
Definition: gsm_08_58.h:781
Definition: gsm_08_58.h:205
Definition: gsm_08_58.h:478
Definition: gsm_08_58.h:179
Definition: gsm_08_58.h:163
Definition: gsm_08_58.h:315
uint8_t chan_nr
Definition: gsm_08_58.h:86
abis_rsl_msgtype_siemens
Siemens vendor-specific RSL message types.
Definition: gsm_08_58.h:262
uint8_t msg_discr
message discriminator (ABIS_RSL_MDISC_*)
Definition: gsm_08_58.h:76
Definition: gsm_08_58.h:231
Definition: gsm_08_58.h:301
Definition: gsm_08_58.h:362
uint8_t spd_ind
Definition: gsm_08_58.h:471
Definition: gsm_08_58.h:371
Definition: gsm_08_58.h:207
Definition: gsm_08_58.h:224
Definition: gsm_08_58.h:407
Definition: gsm_08_58.h:201
Definition: gsm_08_58.h:699
Definition: gsm_08_58.h:307
Definition: gsm_08_58.h:219
Definition: gsm_08_58.h:779
Definition: gsm_08_58.h:196
struct ipac_preproc_ho_ctl_param ho_ctl_param
Definition: gsm_08_58.h:960
Definition: gsm_08_58.h:335
uint8_t power_class
Definition: gsm_08_58.h:728
Definition: gsm_08_58.h:776
Definition: gsm_08_58.h:292
Definition: gsm_08_58.h:304
Definition: gsm_08_58.h:347
uint8_t chan_nr
Definition: gsm_08_58.h:102
Definition: gsm_08_58.h:232
Definition: gsm_08_58.h:715
Definition: gsm_08_58.h:744
Definition: gsm_08_58.h:178
Definition: gsm_08_58.h:786
Definition: gsm_08_58.h:237
Definition: gsm_08_58.h:713
abis_rsl_msgtype
Definition: gsm_08_58.h:157
Definition: gsm_08_58.h:222
Definition: gsm_08_58.h:433
struct abis_rsl_common_hdr c
Definition: gsm_08_58.h:110
Definition: gsm_08_58.h:289
Definition: gsm_08_58.h:318
Definition: gsm_08_58.h:742
Definition: gsm_08_58.h:338
Definition: gsm_08_58.h:373
Definition: gsm_08_58.h:160
Definition: gsm_08_58.h:692
uint8_t vgcs_capable
Definition: gsm_08_58.h:728
Definition: gsm_08_58.h:295
Definition: gsm_08_58.h:277
Definition: gsm_08_58.h:171
Definition: gsm_08_58.h:317
Definition: gsm_08_58.h:770
Definition: gsm_08_58.h:706
union abis_rsl_chan_nr chan_nr_fields
RSL channel number (value)
Definition: gsm_08_58.h:87
Definition: gsm_08_58.h:302
Definition: gsm_08_58.h:220
Definition: gsm_08_58.h:438
struct ipac_preproc_ave_cfg ave_cfg
Definition: gsm_08_58.h:956
Definition: gsm_08_58.h:771
Definition: gsm_08_58.h:698
Definition: gsm_08_58.h:963
Definition: gsm_08_58.h:225
Definition: gsm_08_58.h:745
Definition: gsm_08_58.h:768
Definition: gsm_08_58.h:202
Definition: gsm_08_58.h:436
Definition: gsm_08_58.h:329
Definition: gsm_08_58.h:169
uint8_t chan_nr
Definition: gsm_08_58.h:43
Definition: gsm_08_58.h:294
Definition: gsm_08_58.h:759
Definition: gsm_08_58.h:186
rsl_ipac_rtp_payload
Definition: gsm_08_58.h:687
Definition: gsm_08_58.h:161
Definition: gsm_08_58.h:764
Definition: gsm_08_58.h:350
uint8_t msg_type
message type (abis_rsl_msgtype)
Definition: gsm_08_58.h:77
Definition: gsm_08_58.h:249
uint8_t vbs_capable
Definition: gsm_08_58.h:728
Definition: gsm_08_58.h:327
Definition: gsm_08_58.h:181
union abis_rsl_link_id link_id_fields
RSL link identifier (value)
Definition: gsm_08_58.h:92
Definition: gsm_08_58.h:214
Definition: gsm_08_58.h:298
Definition: gsm_08_58.h:310
Definition: gsm_08_58.h:773
struct ipac_preproc_ncell_dflts ncell_dflts
Definition: gsm_08_58.h:959
Definition: gsm_08_58.h:238
Definition: gsm_08_58.h:349
Definition: gsm_08_58.h:35
Definition: gsm_08_58.h:774
Definition: gsm_08_58.h:423
Definition: gsm_08_58.h:369
Definition: gsm_08_58.h:336
Definition: gsm_08_58.h:188
Definition: gsm_08_58.h:697
uint8_t oct4
Definition: gsm_08_58.h:533
Definition: gsm_08_58.h:428
Definition: gsm_08_58.h:239
Definition: gsm_08_58.h:297
Definition: gsm_08_58.h:162
Definition: gsm_08_58.h:82
Definition: gsm_08_58.h:411
uint8_t chan_nr
Definition: gsm_08_58.h:531
Definition: gsm_08_58.h:367
Definition: gsm_08_58.h:355
Definition: gsm_08_58.h:910
Definition: gsm_08_58.h:337
Definition: gsm_08_58.h:245
Definition: gsm_08_58.h:328
Definition: gsm_08_58.h:340
Definition: gsm_08_58.h:374
Definition: gsm_08_58.h:241
Definition: gsm_08_58.h:368
Definition: gsm_08_58.h:417
Definition: gsm_08_58.h:234
Definition: gsm_08_58.h:242
union abis_rsl_chan_nr chan_nr_fields
RSL channel number (value)
Definition: gsm_08_58.h:103
Definition: gsm_08_58.h:228
Definition: gsm_08_58.h:925
Definition: gsm_08_58.h:437
Definition: gsm_08_58.h:264
Definition: gsm_08_58.h:344
Definition: gsm_08_58.h:212
struct rsl_ie_chan_ident::@90 chan_desc
Definition: gsm_08_58.h:200
Definition: gsm_08_58.h:354
Definition: gsm_08_58.h:425
enum abis_rsl_msgtype __attribute__
uint8_t ie_link_id
RSL_IE_LINK_IDENT (tag)
Definition: gsm_08_58.h:89
Definition: gsm_08_58.h:356
Definition: gsm_08_58.h:206
Definition: gsm_08_58.h:236
MS/BS Power Control Thresholds.
Definition: gsm_08_58.h:803
Definition: gsm_08_58.h:253
Definition: gsm_08_58.h:211
union abis_rsl_chan_nr chan_nr_fields
RSL channel number (value)
Definition: gsm_08_58.h:114
Definition: gsm_08_58.h:305
Definition: gsm_08_58.h:690
Definition: gsm_08_58.h:293
Definition: gsm_08_58.h:418
Definition: gsm_08_58.h:324
uint8_t chan_nr
Definition: gsm_08_58.h:113
Definition: gsm_08_58.h:291
Definition: gsm_08_58.h:251
uint8_t len
Definition: gsm_04_11.h:466
Definition: gsm_08_58.h:263
Definition: gsm_08_58.h:267
Definition: gsm_08_58.h:775
Definition: gsm_08_58.h:359
Definition: gsm_08_58.h:429
struct ipac_preproc_ave_cfg ms_ave_cfg[3]
Definition: gsm_08_58.h:955
Definition: gsm_08_58.h:435
Definition: gsm_08_58.h:737
Definition: gsm_08_58.h:756
Definition: gsm_08_58.h:182
Definition: gsm_08_58.h:185
Definition: gsm_08_58.h:217
Definition: gsm_08_58.h:708
Definition: gsm_08_58.h:210
Definition: gsm_08_58.h:782
struct ipac_preproc_ho_comp ho_comp
Definition: gsm_08_58.h:958
Definition: gsm_08_58.h:427
Definition: gsm_08_58.h:235
Definition: gsm_08_58.h:760
Definition: gsm_08_58.h:416
Definition: gsm_08_58.h:288
Definition: gsm_08_58.h:376
Definition: gsm_08_58.h:167
uint8_t gsm_phase
Definition: gsm_08_58.h:728
Definition: gsm_08_58.h:272
Definition: gsm_08_58.h:769
Definition: gsm_08_58.h:120
Definition: gsm_08_58.h:343
Definition: gsm_08_58.h:689
Definition: gsm_08_58.h:248
Definition: gsm_08_58.h:243
Definition: gsm_08_58.h:377
Definition: gsm_08_58.h:480
Definition: gsm_08_58.h:721
Definition: gsm_08_58.h:109
Definition: gsm_08_58.h:341
Definition: gsm_08_58.h:331
Definition: gsm_08_58.h:758
RSL Cell Broadcast Command (Chapter 9.3.45)
Definition: gsm_08_58.h:643
rsl_ipac_rtp_csd_format_ir
Definition: gsm_08_58.h:719
Definition: gsm_08_58.h:751
Definition: gsm_08_58.h:268
Definition: gsm_08_58.h:98
Definition: gsm_08_58.h:941
Definition: gsm_08_58.h:183
Definition: gsm_08_58.h:375
rsl_cmod_spd
Definition: gsm_08_58.h:477
Definition: gsm_08_58.h:409
Definition: gsm_08_58.h:229
Definition: gsm_08_58.h:276
Definition: gsm_08_58.h:772
Definition: gsm_08_58.h:757
abis_rsl_ie
RSL Information Element Identifiers (Chapter 9.3)
Definition: gsm_08_58.h:287
Definition: gsm_08_58.h:426
PC Threshold Comparators.
Definition: gsm_08_58.h:846
uint8_t data[0]
message payload data
Definition: gsm_08_58.h:116
Definition: gsm_08_58.h:739
Definition: gsm_08_58.h:767
Definition: gsm_08_58.h:440
uint8_t meas_rep_mode
Definition: gsm_08_58.h:953
Definition: gsm_08_58.h:761
Definition: gsm_08_58.h:750
Definition: gsm_08_58.h:244
Definition: gsm_08_58.h:342
uint8_t link_id
Definition: gsm_08_58.h:91
Definition: gsm_08_58.h:691
Definition: gsm_08_58.h:250
Definition: gsm_08_58.h:203
uint8_t data[0]
actual payload data
Definition: gsm_08_58.h:78
uint8_t data[0]
message payload data
Definition: gsm_08_58.h:105
RSL common header.
Definition: gsm_08_58.h:75
Definition: gsm_08_58.h:166
Definition: gsm_08_58.h:273
rsl_ipac_embedded_ie
ip.access specific embedded information elements
Definition: gsm_08_58.h:755
Definition: gsm_08_58.h:164
Definition: gsm_08_58.h:334
Definition: gsm_08_58.h:727
abis_rsl_msgtype_ericsson
Ericsson vendor-specific RSL message types.
Definition: gsm_08_58.h:282
Definition: gsm_08_58.h:306
Definition: gsm_08_58.h:247
Definition: gsm_08_58.h:312
Definition: gsm_08_58.h:233
Definition: gsm_08_58.h:283
Definition: gsm_08_58.h:735
Definition: gsm_08_58.h:736
Definition: gsm_08_58.h:209
Definition: gsm_08_58.h:270
HO Threshold Comparators.
Definition: gsm_08_58.h:873
Definition: gsm_08_58.h:722
Definition: gsm_08_58.h:370
Definition: gsm_08_58.h:766
Definition: gsm_08_58.h:240
Definition: gsm_08_58.h:716
Definition: gsm_08_58.h:763
Definition: gsm_08_58.h:707
Definition: gsm_08_58.h:353
rsl_ipac_speech_mode_m
Definition: gsm_08_58.h:705
uint32_t meas_mode_flags
Definition: gsm_08_58.h:954
Definition: gsm_08_58.h:215
uint8_t ie_chan
RSL_IE_CHAN_NR (tag)
Definition: gsm_08_58.h:84
uint8_t iei
Definition: gsm_08_58.h:530
uint8_t data[0]
message payload data
Definition: gsm_08_58.h:94
Definition: gsm_08_58.h:321
Definition: gsm_08_58.h:323
Definition: gsm_08_58.h:702
uint8_t dtx_dtu
Definition: gsm_08_58.h:470
Definition: gsm_08_58.h:256
Definition: gsm_08_58.h:308
Definition: gsm_08_58.h:364
Definition: gsm_08_58.h:176
Definition: gsm_08_58.h:363
uint8_t ie_chan
RSL_IE_CHAN_NR (tag)
Definition: gsm_08_58.h:111
Definition: gsm_08_58.h:424
Definition: gsm_08_58.h:365
Definition: gsm_08_58.h:339
Definition: gsm_08_58.h:479
Definition: gsm_08_58.h:194
Definition: gsm_08_58.h:252
Definition: gsm_08_58.h:434
Handover Thresholds.
Definition: gsm_08_58.h:818
Definition: gsm_08_58.h:165
Definition: gsm_08_58.h:269
Definition: gsm_08_58.h:431
Definition: gsm_08_58.h:700
Definition: gsm_08_58.h:275
Definition: gsm_08_58.h:720
Definition: gsm_08_58.h:322
Definition: gsm_08_58.h:688
Definition: gsm_08_58.h:332
Definition: gsm_08_58.h:765