mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 20:48:21 +00:00
Merge remote-tracking branch 'origin/topic/jsiwek/mask_addr_rval'
* origin/topic/jsiwek/mask_addr_rval: mask_addr bif now returns subnet (addresses #512)
This commit is contained in:
commit
0e5bc16a60
7 changed files with 60 additions and 8 deletions
32
testing/btest/Baseline/bifs.mask_addr/output
Normal file
32
testing/btest/Baseline/bifs.mask_addr/output
Normal file
|
@ -0,0 +1,32 @@
|
|||
128.0.0.0/1
|
||||
192.0.0.0/2
|
||||
224.0.0.0/3
|
||||
240.0.0.0/4
|
||||
248.0.0.0/5
|
||||
252.0.0.0/6
|
||||
254.0.0.0/7
|
||||
255.0.0.0/8
|
||||
255.128.0.0/9
|
||||
255.192.0.0/10
|
||||
255.224.0.0/11
|
||||
255.240.0.0/12
|
||||
255.248.0.0/13
|
||||
255.252.0.0/14
|
||||
255.254.0.0/15
|
||||
255.255.0.0/16
|
||||
255.255.128.0/17
|
||||
255.255.192.0/18
|
||||
255.255.224.0/19
|
||||
255.255.240.0/20
|
||||
255.255.248.0/21
|
||||
255.255.252.0/22
|
||||
255.255.254.0/23
|
||||
255.255.255.0/24
|
||||
255.255.255.128/25
|
||||
255.255.255.192/26
|
||||
255.255.255.224/27
|
||||
255.255.255.240/28
|
||||
255.255.255.248/29
|
||||
255.255.255.252/30
|
||||
255.255.255.254/31
|
||||
255.255.255.255/32
|
9
testing/btest/bifs/mask_addr.bro
Normal file
9
testing/btest/bifs/mask_addr.bro
Normal file
|
@ -0,0 +1,9 @@
|
|||
# @TEST-EXEC: bro %INPUT >output
|
||||
# @TEST-EXEC: btest-diff output
|
||||
|
||||
const one_to_32: vector of count = {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32};
|
||||
|
||||
for ( i in one_to_32 )
|
||||
{
|
||||
print mask_addr(255.255.255.255, one_to_32[i]);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue