Changes of Revision 60
commit_007033330a361bbfb9fd9d9a7acba9cecb9e0369.txt
Added
commit_ffe7f846e1583b971702a4e8df239d9a475a9d84.txt
Deleted
open5gs_2.5.5.21.ffe7f.dsc -> open5gs_2.5.5.22.0070.dsc
Changed
x
1
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.5.5.21.ffe7f
6
+Version: 2.5.5.22.0070
7
Maintainer: Harald Welte <laforge@gnumonks.org>
8
Uploaders: Sukchan Lee <acetcom@gmail.com>
9
Homepage: https://open5gs.org
10
11
open5gs-udr deb net optional arch=any
12
open5gs-upf deb net optional arch=any
13
Checksums-Sha1:
14
- fd89b51e5d37ed93c7b6d8a35168cdc5b8f749ec 11523392 open5gs_2.5.5.21.ffe7f.tar.xz
15
+ ad05259b359c9376f41da1638045b26d4b68f591 11523936 open5gs_2.5.5.22.0070.tar.xz
16
Checksums-Sha256:
17
- 04ed899149e98fd216ae6c93d9cde071ccaa71c072dfd8ab963820a354e57318 11523392 open5gs_2.5.5.21.ffe7f.tar.xz
18
+ 7ecb70a9077c1c5d8a8c9c6cd9fd571e2cd9feafbaefd8b3d9b98351693780e8 11523936 open5gs_2.5.5.22.0070.tar.xz
19
Files:
20
- c8474ad8f79ff61eceb48c29982b0681 11523392 open5gs_2.5.5.21.ffe7f.tar.xz
21
+ 25feaa6efb99ddc88901ae652629d056 11523936 open5gs_2.5.5.22.0070.tar.xz
22
open5gs_2.5.5.21.ffe7f.tar.xz/.tarball-version -> open5gs_2.5.5.22.0070.tar.xz/.tarball-version
Changed
4
1
2
-2.5.5.21-ffe7f
3
+2.5.5.22-0070
4
open5gs_2.5.5.21.ffe7f.tar.xz/debian/changelog -> open5gs_2.5.5.22.0070.tar.xz/debian/changelog
Changed
12
1
2
-open5gs (2.5.5.21.ffe7f) unstable; urgency=medium
3
+open5gs (2.5.5.22.0070) unstable; urgency=medium
4
5
* Automatically generated changelog entry for building the Osmocom master feed
6
7
- -- Osmocom OBS scripts <info@osmocom.org> Mon, 21 Nov 2022 13:32:40 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org> Tue, 22 Nov 2022 08:33:22 +0000
9
10
open5gs (2.5.6) unstable; urgency=medium
11
12
open5gs_2.5.5.21.ffe7f.tar.xz/tests/sctp/sctp-test.c -> open5gs_2.5.5.22.0070.tar.xz/tests/sctp/sctp-test.c
Changed
81
1
2
3
size = ogs_sctp_recvdata(sctp, str, STRLEN, &from, &sinfo);
4
ABTS_INT_EQUAL(tc, strlen(DATASTR), size);
5
-#if !HAVE_USRSCTP /* FIXME : USRSCTP is not working */
6
ABTS_INT_EQUAL(tc, PPID, sinfo.ppid);
7
-#endif
8
9
ogs_sctp_destroy(sctp);
10
rv = ogs_freeaddrinfo(addr);
11
12
13
size = ogs_sctp_recvdata(sctp, str, STRLEN, &from, &sinfo);
14
ABTS_INT_EQUAL(tc, strlen(DATASTR), size);
15
-#if !HAVE_USRSCTP /* FIXME : USRSCTP is not working */
16
ABTS_INT_EQUAL(tc, PPID, sinfo.ppid);
17
-#endif
18
19
ogs_thread_destroy(test3_thread);
20
21
22
23
size = ogs_sctp_recvdata(sctp, str, STRLEN, NULL, &sinfo);
24
ABTS_INT_EQUAL(tc, strlen(DATASTR), size);
25
-#if !HAVE_USRSCTP /* FIXME : USRSCTP is not working */
26
ABTS_INT_EQUAL(tc, PPID, sinfo.ppid);
27
-#endif
28
29
ogs_sctp_destroy(sctp);
30
31
32
size = ogs_sctp_recvdata(sctp, str, STRLEN, &from, &sinfo);
33
ABTS_INT_EQUAL(tc, strlen(DATASTR), size);
34
ABTS_STR_EQUAL(tc, "::1", OGS_ADDR(&from, buf));
35
-#if !HAVE_USRSCTP /* FIXME : USRSCTP is not working */
36
ABTS_INT_EQUAL(tc, PPID, sinfo.ppid);
37
-#endif
38
39
size = ogs_sctp_sendmsg(sctp, DATASTR, strlen(DATASTR), &from, PPID, 0);
40
ABTS_INT_EQUAL(tc, strlen(DATASTR), size);
41
42
ABTS_INT_EQUAL(tc, OGS_OK, rv);
43
rv = ogs_sctp_connect(sctp, addr);
44
ABTS_INT_EQUAL(tc, OGS_OK, rv);
45
+ size = ogs_sctp_sendmsg(sctp, DATASTR, strlen(DATASTR), addr, PPID, 0);
46
+ ABTS_INT_EQUAL(tc, strlen(DATASTR), size);
47
+
48
rv = ogs_freeaddrinfo(addr);
49
ABTS_INT_EQUAL(tc, OGS_OK, rv);
50
-#if !HAVE_USRSCTP /* FIXME : libusrsctp 0.9.3.0 does not support remote_addr */
51
- remote_addr = &sctp->remote_addr;
52
- ABTS_STR_EQUAL(tc, "::1", OGS_ADDR(remote_addr, buf));
53
-
54
- size = ogs_sctp_sendmsg(sctp, DATASTR, strlen(DATASTR),
55
- remote_addr, PPID, 0);
56
-#else
57
- size = ogs_sctp_sendmsg(sctp, DATASTR, strlen(DATASTR),
58
- addr, PPID, 0);
59
-#endif
60
- ABTS_INT_EQUAL(tc, strlen(DATASTR), size);
61
62
size = ogs_sctp_recvdata(sctp, str, STRLEN, &from, &sinfo);
63
ABTS_INT_EQUAL(tc, strlen(DATASTR), size);
64
ABTS_STR_EQUAL(tc, "::1", OGS_ADDR(&from, buf));
65
-#if !HAVE_USRSCTP /* FIXME : USRSCTP is not working */
66
ABTS_INT_EQUAL(tc, PPID, sinfo.ppid);
67
-#endif
68
69
ogs_sctp_destroy(sctp);
70
}
71
72
size = ogs_sctp_recvdata(sctp, str, STRLEN, &from, &sinfo);
73
ABTS_INT_EQUAL(tc, strlen(DATASTR), size);
74
ABTS_STR_EQUAL(tc, "::1", OGS_ADDR(&from, buf));
75
-#if !HAVE_USRSCTP /* FIXME : USRSCTP is not working */
76
ABTS_INT_EQUAL(tc, PPID, sinfo.ppid);
77
-#endif
78
79
size = ogs_sctp_sendmsg(sctp, DATASTR, strlen(DATASTR), &from,
80
sinfo.ppid, 0);
81
open5gs_2.5.5.21.ffe7f.tar.xz/tests/unit/gtp-message-test.c -> open5gs_2.5.5.22.0070.tar.xz/tests/unit/gtp-message-test.c
Changed
19
1
2
pkbuf, OGS_TLV_MODE_T1_L2_I1);
3
ABTS_INT_EQUAL(tc, OGS_OK, rv);
4
5
- ogs_pkbuf_free(pkbuf);
6
-
7
ABTS_INT_EQUAL(tc, 1, req.imsi.presence);
8
ABTS_INT_EQUAL(tc, 8, req.imsi.len);
9
_value = (char*)"55153011 340010f4";
10
11
ABTS_INT_EQUAL(tc, 0, req.epdg_ldn.presence);
12
ABTS_INT_EQUAL(tc, 0, req.mo_exception_data_counter.presence);
13
ABTS_INT_EQUAL(tc, 0, req.ue_tcp_port.presence);
14
+
15
+ ogs_pkbuf_free(pkbuf);
16
}
17
18
abts_suite *test_gtp_message(abts_suite *suite)
19