Skip to content

Commit

Permalink
fix DEFAULT_BIND
Browse files Browse the repository at this point in the history
  • Loading branch information
syphar committed Jun 4, 2023
1 parent 635b9db commit f1a7e46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ pub(crate) fn encode_url_path(path: &str) -> String {
utf8_percent_encode(path, PATH).to_string()
}

const DEFAULT_BIND: SocketAddr = SocketAddr::new(IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)), 8080);
const DEFAULT_BIND: SocketAddr = SocketAddr::new(IpAddr::V4(Ipv4Addr::new(0, 0, 0, 0)), 3000);

#[derive(Debug)]
struct MatchVersion {
Expand Down

0 comments on commit f1a7e46

Please sign in to comment.