Browse Source

revert port as string

master
Jonathan Cobb 4 years ago
parent
commit
8ffa6242e4
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/admin.rs

+ 2
- 2
src/admin.rs View File

@@ -31,7 +31,7 @@ struct AdminRegistration {
#[derive(Debug, Deserialize, Serialize, Clone)] #[derive(Debug, Deserialize, Serialize, Clone)]
struct BubbleRegistration { struct BubbleRegistration {
ip: String, ip: String,
port: String,
port: u16,
auth_token: String auth_token: String
} }


@@ -86,7 +86,7 @@ async fn handle_register(registration : AdminRegistration,
// create the registration object // create the registration object
let bubble_registration = BubbleRegistration { let bubble_registration = BubbleRegistration {
ip: proxy_ip, ip: proxy_ip,
port: proxy_port.to_string(),
port: proxy_port,
auth_token: token auth_token: token
}; };




Loading…
Cancel
Save