fixes for test
This commit is contained in:
parent
77303d5751
commit
c4db765423
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -5896,7 +5896,6 @@ dependencies = [
|
|||||||
"oslog",
|
"oslog",
|
||||||
"paranoid-android",
|
"paranoid-android",
|
||||||
"parking_lot 0.11.2",
|
"parking_lot 0.11.2",
|
||||||
"parking_lot 0.12.1",
|
|
||||||
"rand 0.7.3",
|
"rand 0.7.3",
|
||||||
"range-set-blaze",
|
"range-set-blaze",
|
||||||
"rust-fsm",
|
"rust-fsm",
|
||||||
|
@ -12,7 +12,7 @@ const MAX_LEN: usize = LengthType::MAX as usize;
|
|||||||
|
|
||||||
// XXX: keep statistics on all drops and why we dropped them
|
// XXX: keep statistics on all drops and why we dropped them
|
||||||
// XXX: move to config eventually?
|
// XXX: move to config eventually?
|
||||||
const FRAGMENT_LEN: usize = 1280 - HEADER_LEN;
|
pub const FRAGMENT_LEN: usize = 1280 - HEADER_LEN;
|
||||||
const MAX_CONCURRENT_HOSTS: usize = 256;
|
const MAX_CONCURRENT_HOSTS: usize = 256;
|
||||||
const MAX_ASSEMBLIES_PER_HOST: usize = 256;
|
const MAX_ASSEMBLIES_PER_HOST: usize = 256;
|
||||||
const MAX_BUFFER_PER_HOST: usize = 256 * 1024;
|
const MAX_BUFFER_PER_HOST: usize = 256 * 1024;
|
||||||
|
@ -86,7 +86,7 @@ pub async fn test_one_frag_out_in() {
|
|||||||
// Sending
|
// Sending
|
||||||
println!("sending");
|
println!("sending");
|
||||||
for _ in 0..10000 {
|
for _ in 0..10000 {
|
||||||
let random_len = (get_random_u32() % 1000) as usize + 1280;
|
let random_len = (get_random_u32() % 1000) as usize + FRAGMENT_LEN;
|
||||||
let mut message = vec![1u8; random_len];
|
let mut message = vec![1u8; random_len];
|
||||||
random_bytes(&mut message);
|
random_bytes(&mut message);
|
||||||
let remote_addr = random_sockaddr();
|
let remote_addr = random_sockaddr();
|
||||||
@ -289,7 +289,7 @@ pub async fn test_many_frags_with_drops() {
|
|||||||
println!("sending");
|
println!("sending");
|
||||||
for _ in 0..1000 {
|
for _ in 0..1000 {
|
||||||
let random_len = (get_random_u32() % 65536) as usize;
|
let random_len = (get_random_u32() % 65536) as usize;
|
||||||
if random_len > 1280 {
|
if random_len > FRAGMENT_LEN {
|
||||||
total_fragged += 1;
|
total_fragged += 1;
|
||||||
}
|
}
|
||||||
total_sent_size += random_len;
|
total_sent_size += random_len;
|
||||||
|
Loading…
Reference in New Issue
Block a user