Changes of Revision 242

commit_26141ee2b515fd2533a3b3c494e8482d511b6601.txt Added
commit_d1f3ce304dad525c4aecb1cdcf767f989cb00977.txt Deleted
open5gs_2.6.4.29.d1f3c.dsc -> open5gs_2.6.4.30.2614.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.29.d1f3c
6
+Version: 2.6.4.30.2614
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
- 1bf150d7903ef495133ac58408ae97174693416d 14124212 open5gs_2.6.4.29.d1f3c.tar.xz
15
+ a46d2590bae3ff50ea1cc7687500ccbece056ace 14123256 open5gs_2.6.4.30.2614.tar.xz
16
 Checksums-Sha256:
17
- 0ccbee247f69530031c3ded32318cd4e1990c55c1d7e8dab3d3d38acc23affbd 14124212 open5gs_2.6.4.29.d1f3c.tar.xz
18
+ a6fe3c714fdd2dcdef74abf1ce7473dfbbe75ffa60f43b20d92eeec17cffd600 14123256 open5gs_2.6.4.30.2614.tar.xz
19
 Files:
20
- 1dab8298bcb36ed858d921c92deb93dc 14124212 open5gs_2.6.4.29.d1f3c.tar.xz
21
+ 401082c6a17939ff8aa167c3acd4e8fe 14123256 open5gs_2.6.4.30.2614.tar.xz
22
open5gs_2.6.4.29.d1f3c.tar.xz/.tarball-version -> open5gs_2.6.4.30.2614.tar.xz/.tarball-version Changed
4
 
1
@@ -1 +1 @@
2
-2.6.4.29-d1f3c
3
+2.6.4.30-2614
4
open5gs_2.6.4.29.d1f3c.tar.xz/debian/changelog -> open5gs_2.6.4.30.2614.tar.xz/debian/changelog Changed
12
 
1
@@ -1,8 +1,8 @@
2
-open5gs (2.6.4.29.d1f3c) unstable; urgency=medium
3
+open5gs (2.6.4.30.2614) unstable; urgency=medium
4
 
5
   * Automatically generated changelog entry for building the Osmocom master feed
6
 
7
- -- Osmocom OBS scripts <info@osmocom.org>  Sat, 01 Jul 2023 14:26:08 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org>  Sat, 01 Jul 2023 15:11:06 +0000
9
 
10
 open5gs (2.6.4) unstable; urgency=medium
11
 
12
open5gs_2.6.4.29.d1f3c.tar.xz/src/upf/arp-nd.cpp -> open5gs_2.6.4.30.2614.tar.xz/src/upf/arp-nd.cpp Changed
26
 
1
@@ -21,6 +21,7 @@
2
 #include <tins/ethernetII.h>
3
 #include <tins/hw_address.h>
4
 #include <tins/icmpv6.h>
5
+#include <tins/exceptions.h>
6
 
7
 #include "arp-nd.h"
8
 
9
@@ -69,8 +70,14 @@
10
 bool _parse_nd(EthernetII &pdu)
11
 {
12
     if (pdu.payload_type() == ETHERTYPE_IPV6) {
13
-        const ICMPv6& icmp6 = pdu.rfind_pdu<ICMPv6>();
14
-        return icmp6.type() == ICMPv6::NEIGHBOUR_SOLICIT;
15
+        try {
16
+            const ICMPv6& icmp6 = pdu.rfind_pdu<ICMPv6>();
17
+            return icmp6.type() == ICMPv6::NEIGHBOUR_SOLICIT;
18
+        }
19
+        catch (Tins::pdu_not_found& e) {
20
+            /* If it is not an ICMPv6 message, it can not be a NEIGHBOUR_SOLICIT */
21
+            return false;
22
+        }
23
     }
24
     return false;
25
 }
26