Changes of Revision 248

commit_a7898cb26c2d24de4e92a4e73ba78c376885ce5b.txt Added
commit_fa5d9003d7120205c67c3970cbc4cfbfb24c732a.txt Deleted
open5gs_2.6.4.35.fa5d9.dsc -> open5gs_2.6.4.36.a7898.dsc Changed
x
 
1
@@ -2,7 +2,7 @@
2
 Source: open5gs
3
 Binary: open5gs-common, open5gs-mme, open5gs-sgwc, open5gs-smf, open5gs-amf, open5gs-sgwu, open5gs-upf, open5gs-hss, open5gs-pcrf, open5gs-nrf, open5gs-scp, open5gs-ausf, open5gs-udm, open5gs-pcf, open5gs-nssf, open5gs-bsf, open5gs-udr, open5gs, open5gs-dbg
4
 Architecture: any
5
-Version: 2.6.4.35.fa5d9
6
+Version: 2.6.4.36.a7898
7
 Maintainer: Harald Welte <laforge@gnumonks.org>
8
 Uploaders: Sukchan Lee <acetcom@gmail.com>
9
 Homepage: https://open5gs.org
10
@@ -31,8 +31,8 @@
11
  open5gs-udr deb net optional arch=any
12
  open5gs-upf deb net optional arch=any
13
 Checksums-Sha1:
14
- 79ae2e88b210cbac832a659e3ca7600f2702c37e 14124780 open5gs_2.6.4.35.fa5d9.tar.xz
15
+ 40f49a09415a19552897421411385f8218ded9cc 14124168 open5gs_2.6.4.36.a7898.tar.xz
16
 Checksums-Sha256:
17
- e0ef29eed00ddac09a4fc4932f7e977bbad00e4bd8b266268291ad5ffeba39cc 14124780 open5gs_2.6.4.35.fa5d9.tar.xz
18
+ 7e61d228877f84168ccc73327aabe75cd354f4e2dc4b5d3624bb63500c2da8b5 14124168 open5gs_2.6.4.36.a7898.tar.xz
19
 Files:
20
- 4387b777b2339b0cda13828eb8a5bc62 14124780 open5gs_2.6.4.35.fa5d9.tar.xz
21
+ c1fb094cd69b83f39adee34c62d53d9e 14124168 open5gs_2.6.4.36.a7898.tar.xz
22
open5gs_2.6.4.35.fa5d9.tar.xz/.tarball-version -> open5gs_2.6.4.36.a7898.tar.xz/.tarball-version Changed
4
 
1
@@ -1 +1 @@
2
-2.6.4.35-fa5d9
3
+2.6.4.36-a7898
4
open5gs_2.6.4.35.fa5d9.tar.xz/debian/changelog -> open5gs_2.6.4.36.a7898.tar.xz/debian/changelog Changed
12
 
1
@@ -1,8 +1,8 @@
2
-open5gs (2.6.4.35.fa5d9) unstable; urgency=medium
3
+open5gs (2.6.4.36.a7898) unstable; urgency=medium
4
 
5
   * Automatically generated changelog entry for building the Osmocom master feed
6
 
7
- -- Osmocom OBS scripts <info@osmocom.org>  Thu, 13 Jul 2023 13:49:22 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org>  Thu, 13 Jul 2023 23:24:15 +0000
9
 
10
 open5gs (2.6.4) unstable; urgency=medium
11
 
12
open5gs_2.6.4.35.fa5d9.tar.xz/lib/gtp/xact.c -> open5gs_2.6.4.36.a7898.tar.xz/lib/gtp/xact.c Changed
34
 
1
@@ -88,15 +88,19 @@
2
     xact->cb = cb;
3
     xact->data = data;
4
 
5
-    xact->tm_response = ogs_timer_add(
6
-            ogs_app()->timer_mgr, response_timeout, xact);
7
-    ogs_assert(xact->tm_response);
8
-    xact->response_rcount = ogs_app()->time.message.gtp.n3_response_rcount,
9
+    /* 7.6 "The T3-RESPONSE timer shall be started when a signalling request
10
+     * message (for which a response has been defined) is sent." */
11
+    if (hdesc->type != OGS_GTP1_RAN_INFORMATION_RELAY_TYPE) {
12
+        xact->tm_response = ogs_timer_add(
13
+                ogs_app()->timer_mgr, response_timeout, xact);
14
+        ogs_assert(xact->tm_response);
15
+        xact->response_rcount = ogs_app()->time.message.gtp.n3_response_rcount;
16
+    }
17
 
18
     xact->tm_holding = ogs_timer_add(
19
             ogs_app()->timer_mgr, holding_timeout, xact);
20
     ogs_assert(xact->tm_holding);
21
-    xact->holding_rcount = ogs_app()->time.message.gtp.n3_holding_rcount,
22
+    xact->holding_rcount = ogs_app()->time.message.gtp.n3_holding_rcount;
23
 
24
     ogs_list_add(&xact->gnode->local_list, xact);
25
 
26
@@ -987,6 +991,7 @@
27
     case OGS_GTP1_FORWARD_RELOCATION_REQUEST_TYPE:
28
     case OGS_GTP1_RELOCATION_CANCEL_REQUEST_TYPE:
29
     case OGS_GTP1_UE_REGISTRATION_QUERY_REQUEST_TYPE:
30
+    case OGS_GTP1_RAN_INFORMATION_RELAY_TYPE:
31
         stage = GTP_XACT_INITIAL_STAGE;
32
         break;
33
     case OGS_GTP1_ECHO_RESPONSE_TYPE:
34