Skip to content

Commit

Permalink
update the list
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 27, 2024
1 parent 39574e2 commit 0b0b05e
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 5 deletions.
3 changes: 3 additions & 0 deletions data/rules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1921,9 +1921,12 @@ org.cu
cv
com.cv
edu.cv
id.cv
int.cv
net.cv
nome.cv
org.cv
publ.cv
blogspot.cv
cw
com.cw
Expand Down
34 changes: 29 additions & 5 deletions src/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26848,14 +26848,14 @@ fn lookup_291_2(acc: usize) -> Info {
#[inline]
fn lookup_291_3(acc: usize) -> Info {
Info {
len: acc + 1 + 3usize,
len: acc + 1 + 2usize,
typ: Some(Type::Icann),
}
}
#[inline]
fn lookup_291_4(acc: usize) -> Info {
Info {
len: acc + 1 + 4usize,
len: acc + 1 + 3usize,
typ: Some(Type::Icann),
}
}
Expand All @@ -26867,6 +26867,27 @@ fn lookup_291_5(acc: usize) -> Info {
}
}
#[inline]
fn lookup_291_6(acc: usize) -> Info {
Info {
len: acc + 1 + 4usize,
typ: Some(Type::Icann),
}
}
#[inline]
fn lookup_291_7(acc: usize) -> Info {
Info {
len: acc + 1 + 3usize,
typ: Some(Type::Icann),
}
}
#[inline]
fn lookup_291_8(acc: usize) -> Info {
Info {
len: acc + 1 + 4usize,
typ: Some(Type::Icann),
}
}
#[inline]
fn lookup_291<'a, T>(mut labels: T) -> Info
where
T: Iterator<Item = &'a [u8]>,
Expand All @@ -26881,9 +26902,12 @@ where
[98, 108, 111, 103, 115, 112, 111, 116] => lookup_291_0(acc),
[99, 111, 109] => lookup_291_1(acc),
[101, 100, 117] => lookup_291_2(acc),
[105, 110, 116] => lookup_291_3(acc),
[110, 111, 109, 101] => lookup_291_4(acc),
[111, 114, 103] => lookup_291_5(acc),
[105, 100] => lookup_291_3(acc),
[105, 110, 116] => lookup_291_4(acc),
[110, 101, 116] => lookup_291_5(acc),
[110, 111, 109, 101] => lookup_291_6(acc),
[111, 114, 103] => lookup_291_7(acc),
[112, 117, 98, 108] => lookup_291_8(acc),
_ => info,
},
None => info,
Expand Down

0 comments on commit 0b0b05e

Please sign in to comment.