add bench docker

This commit is contained in:
Jun Kurihara 2022-06-28 00:58:05 -04:00
commit 7172f932ca
No known key found for this signature in database
GPG key ID: 48ADFD173ED22B03
8 changed files with 78 additions and 8 deletions

View file

@ -1,4 +1,5 @@
pub const LISTEN_ADDRESSES: &[&str] = &["0.0.0.0", "[::]"];
pub const LISTEN_ADDRESSES_V4: &[&str] = &["0.0.0.0"];
pub const LISTEN_ADDRESSES_V6: &[&str] = &["[::]"];
// pub const HTTP_LISTEN_PORT: u16 = 8080;
// pub const HTTPS_LISTEN_PORT: u16 = 8443;
pub const TIMEOUT_SEC: u64 = 10;