update services list

This commit is contained in:
GyulyVGC
2025-06-25 22:50:18 +02:00
parent 5c72f7a361
commit d4d3fbb97f
3 changed files with 9 additions and 3 deletions

View File

@@ -49,7 +49,7 @@ fn build_services_phf() {
services_map.entry(key, &val); services_map.entry(key, &val);
num_entries += 1; num_entries += 1;
} }
assert_eq!(num_entries, 12078); assert_eq!(num_entries, 12084);
writeln!( writeln!(
&mut output, &mut output,

View File

@@ -4930,6 +4930,7 @@ f5-globalsite 2792/tcp
f5-globalsite 2792/udp f5-globalsite 2792/udp
initlsmsad 2793/tcp initlsmsad 2793/tcp
initlsmsad 2793/udp initlsmsad 2793/udp
urp 2794/tcp
livestats 2795/tcp livestats 2795/tcp
livestats 2795/udp livestats 2795/udp
ac-tech 2796/tcp ac-tech 2796/tcp
@@ -9185,6 +9186,7 @@ fis 5912/tcp
fis 5912/udp fis 5912/udp
ads-c 5913/tcp ads-c 5913/tcp
ads-c 5913/udp ads-c 5913/udp
ipsdtls 5914/tcp
teamviewer 5938/tcp teamviewer 5938/tcp
indy 5963/tcp indy 5963/tcp
indy 5963/udp indy 5963/udp
@@ -9489,6 +9491,7 @@ scup-disc 6315/udp
abb-escp 6316/tcp abb-escp 6316/tcp
abb-escp 6316/udp abb-escp 6316/udp
nav-data-cmd 6317/tcp nav-data-cmd 6317/tcp
iona-data 6318/tcp
repsvc 6320/tcp repsvc 6320/tcp
repsvc 6320/udp repsvc 6320/udp
emp-server1 6321/tcp emp-server1 6321/tcp
@@ -10149,6 +10152,7 @@ dell-eql-asm 7569/tcp
aries-kfinder 7570/tcp aries-kfinder 7570/tcp
aries-kfinder 7570/udp aries-kfinder 7570/udp
coherence 7574/tcp coherence 7574/tcp
wtmi-panel 7575/tcp
sun-lm 7588/tcp sun-lm 7588/tcp
sun-lm 7588/udp sun-lm 7588/udp
qaz 7597/tcp qaz 7597/tcp
@@ -10473,6 +10477,7 @@ pando-sec 8276/udp
synapse-nhttp 8280/tcp synapse-nhttp 8280/tcp
synapse-nhttp 8280/udp synapse-nhttp 8280/udp
libelle 8282/tcp libelle 8282/tcp
winbox 8291/tcp
blp3 8292/tcp blp3 8292/tcp
blp3 8292/udp blp3 8292/udp
hiperscan-id 8293/tcp hiperscan-id 8293/tcp
@@ -11737,6 +11742,7 @@ flexlm9 27009/tcp
flex-lm 27009/udp flex-lm 27009/udp
flexlm10 27010/tcp flexlm10 27010/tcp
halflife 27015/udp halflife 27015/udp
chlenix 27016/tcp
mongod 27017/tcp mongod 27017/tcp
mongod 27018/tcp mongod 27018/tcp
mongod 27019/tcp mongod 27019/tcp

View File

@@ -1552,7 +1552,7 @@ fn test_get_service_unknown() {
#[test] #[test]
fn test_all_services_map_key_and_values_are_valid() { fn test_all_services_map_key_and_values_are_valid() {
assert_eq!(SERVICES.len(), 12078); assert_eq!(SERVICES.len(), 12084);
let mut distinct_services = HashSet::new(); let mut distinct_services = HashSet::new();
for (sq, s) in &SERVICES { for (sq, s) in &SERVICES {
// only tcp or udp // only tcp or udp
@@ -1573,7 +1573,7 @@ fn test_all_services_map_key_and_values_are_valid() {
// just to count and verify number of distinct services // just to count and verify number of distinct services
distinct_services.insert(name.to_string()); distinct_services.insert(name.to_string());
} }
assert_eq!(distinct_services.len(), 6450); assert_eq!(distinct_services.len(), 6456);
} }
#[test] #[test]