File tree 2 files changed +12
-2
lines changed
2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ bool in_network_ipv4(
215
215
const SocketAddress& ip,
216
216
const SocketAddress& net,
217
217
int prefix) {
218
- uint32_t mask = ((1 << prefix) - 1 ) << (32 - prefix);
218
+ uint32_t mask = ((1ull << prefix) - 1 ) << (32 - prefix);
219
219
220
220
const sockaddr_in* ip_in =
221
221
reinterpret_cast <const sockaddr_in*>(ip.data ());
@@ -293,7 +293,7 @@ bool in_network_ipv6_ipv4(
293
293
if (prefix == 32 )
294
294
return compare_ipv4_ipv6 (net, ip) == SocketAddress::CompareResult::SAME;
295
295
296
- uint32_t m = ((1 << prefix) - 1 ) << (32 - prefix);
296
+ uint32_t m = ((1ull << prefix) - 1 ) << (32 - prefix);
297
297
298
298
const sockaddr_in6* ip_in =
299
299
reinterpret_cast <const sockaddr_in6*>(ip.data ());
Original file line number Diff line number Diff line change @@ -272,3 +272,13 @@ const util = require('util');
272
272
const ret = util . inspect ( blockList , { depth : null } ) ;
273
273
assert ( ret . includes ( 'rules: []' ) ) ;
274
274
}
275
+
276
+ {
277
+ // Test for https://github.com/nodejs/node/issues/43360
278
+ const blocklist = new BlockList ( ) ;
279
+ blocklist . addSubnet ( '1.1.1.1' , 32 , 'ipv4' ) ;
280
+
281
+ assert ( blocklist . check ( '1.1.1.1' ) ) ;
282
+ assert ( ! blocklist . check ( '1.1.1.2' ) ) ;
283
+ assert ( ! blocklist . check ( '2.3.4.5' ) ) ;
284
+ }
You can’t perform that action at this time.
0 commit comments