diff --git a/src/admin.rs b/src/admin.rs index 1a41e9e..713e922 100644 --- a/src/admin.rs +++ b/src/admin.rs @@ -31,7 +31,7 @@ struct AdminRegistration { #[derive(Debug, Deserialize, Serialize, Clone)] struct BubbleRegistration { ip: String, - port: String, + port: u16, auth_token: String } @@ -86,7 +86,7 @@ async fn handle_register(registration : AdminRegistration, // create the registration object let bubble_registration = BubbleRegistration { ip: proxy_ip, - port: proxy_port.to_string(), + port: proxy_port, auth_token: token };