aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/gsm/protocol/gsm_04_08_gprs.h
AgeCommit message (Collapse)AuthorFilesLines
2024-01-20gsm_04_08_gprs.h: Introduce packed struct gsm48_pdp_addressPau Espin Pedrol1-1/+35
This can be used in several protocols, such as GTP, GSUP, etc. Related: OS#6091 Change-Id: I453ced42dd36df3a6ddb5db67093df5a22cad18c
2023-07-18gsm: Add missing IE definition for GMM Receive N-PDU Number listPau Espin Pedrol1-0/+1
Change-Id: Ifac09653141758af345efe2eb9cef25ebf4dcff9
2023-05-22gsm_04_08_gprs: add IEI "GMM TMSI Based NRI Container"Neels Hofmeyr1-0/+1
OsmoHNBGW will need to obtain the NRI from GMM Attach Request and GMM RAU Request to implement CN pooling. Related: SYS#6412 Change-Id: Id661abfdb2c81a92c9046542bbc08d6ccd39f073
2023-04-25gsm_04_08_gprs.h: Add enum field for GMM 'P-TMSI type' IEPau Espin Pedrol1-0/+1
Change-Id: Ief4e03785f01f07c8d97b33bbb55c89a863baccc
2023-04-13gsm_04_08_gprs.h: Add missing GMM IEs for T3302 and T3346Pau Espin Pedrol1-0/+2
As specified in TS 24.008 9.4.4 "Attach reject" Change-Id: I2d36d76ee6fe8ed1a36e37a7d74fbbdc9c27c2c7
2023-03-28gsm: Add missing TS 24.008 SM layer IEsPau Espin Pedrol1-0/+9
Change-Id: Iec0dbf617c8d0f2c8c44156d936244cedda9b303
2023-02-17Fix typo endianess -> endiannessOliver Smith1-4/+4
Rename contrib/struct_endianess.py to contrib/struct_endianness.py, and fix the typo everywhere. This is in preparation to call the script in CI on all repositories. Related: OS#5884 Change-Id: Idc4af9098ba1de26243464c772d6ea8be330646a
2022-09-29include: use '#pragma once' everywhereVadim Yanitskiy1-5/+1
Change-Id: Iecc1754caae401aca28444d3e3d0cca04b398f26
2021-09-29GPRS: Add PDP_TYPE_N_IETF_IPv4v6Keith1-0/+1
Change-Id: I1f82f9d8fc13dcc4474760329bd74ae9685b9031
2020-12-01gsm: Add enum for Network Feature Support IEPau Espin Pedrol1-0/+1
Change-Id: Ie409fd163b612bc3e2d7b8bf22d720705f0f6af1
2019-01-14comments: update/fix three 3GPP spec referencesNeels Hofmeyr1-1/+1
Change-Id: I3ab94f362866d752099000afe62922288b3dd118
2018-12-19add/clean big-endian packed structs (struct_endianess.py)Neels Hofmeyr1-0/+31
This is 1:1 the result of doing cd libosmocore ./contrib/struct_endianess.py git commit -a Running struct_endianess.py again should result in no changes. That means we could include such a check in the gerrit verification job now. Change-Id: Ia0b99d76932aeb03e93bd0c62d3bf025dec5f9d2
2017-07-09gsm_04_08/sgsn: Add another IE for internal usage in the sgsnHolger Hans Peter Freyther1-0/+1
The PDP charging characteristics will be returned from the PDP selection code and be used in the SGSN. It is following the same approach as the QoS and PDP addr. It is a bit of a pity that we have to define this in a different project. Change-Id: I7815c5dfd7b7fb0ea78d816ebfb3abfbf0090afe
2017-06-23doxygen: unify use of \file across the boardNeels Hofmeyr1-0/+2
Considering the various styles and implications found in the sources, edit scores of files to follow the same API doc guidelines around the doxygen grouping and the \file tag. Many files now show a short description in the generated API doc that was so far only available as C comment. The guidelines and reasoning behind it is documented at https://osmocom.org/projects/cellular-infrastructure/wiki/Guidelines_for_API_documentation In some instances, remove file comments and add to the corresponding group instead, to be shared among several files (e.g. bitvec). Change-Id: Ifa70e77e90462b5eb2b0457c70fd25275910c72b
2017-05-12gsm_04_08: Add missing GSM cause valueDaniel Willmann1-0/+3
Table 10.5.157 in 10.5.6.6 of 3GPP TS 04.08 is badly formatted. The first value 0x19 "LLC or SNDCP failure" is in the same line as the heading and has not been included in the struct_value so far. Table 10.5.157 in 10.5.6.6 of 3GPP TS 24.008 fixes this formatting issue and also defines two more values 0x08 and 0x18 which are now added to the struct value_string. Change-Id: I5bcc52f739ff0677011d024448afcc2a54869638
2016-08-29IuPS: add GMM Service Request related constants and value_strNeels Hofmeyr1-0/+16
Change-Id: Ie023fc78099932f95cc8f1b3a04fe25dfd14bc35
2016-07-08Add strings with GPRS GMM messagesMax1-0/+1
Change-Id: I48477b733e2da72f59349c00554dd3e080c9f445 Related: OS#1582
2016-06-29Add function to check MS GEA capabilitiesMax1-0/+5
Add function which parses MS network capability IE value for bits indicating support for particular version of GEA. Change-Id: I785cef37dd272a2fab9b172f6e1392f865174e9a Relates: OS#1582
2016-06-16Add UMTS AKA related MM/GMM message type and IE definitionsHarald Welte1-0/+12
Change-Id: Id45ea2c631ee589a4df1f8213da6f7e7d1bf6616 Reviewed-on: https://gerrit.osmocom.org/305 Reviewed-by: Harald Welte <laforge@gnumonks.org> Tested-by: Jenkins Builder
2016-05-05import gsm_04_08_gprs.[ch] from openbsc.gitHarald Welte1-0/+397
The definitions in this header file (and associated strings in the c file) are generic about the GPRS Layer3 signalling protocols, and thus should be part of the library.