Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,9 @@ impl Connection {
//TODO: Determine what needs to happen here
}
//this command is where we tell the client what port to use
//WARNING: This command does not work properly.
//For some reason the client does not like the port we are sending and defaults to 65535 this is fine for now but will be fixed in the future
//TODO: make configurable?
Some(FtlCommand::Dot) => {
let resp_string = "200 hi. Use UDP port 65535\n".to_string();
let resp_string = "200. Use UDP port 65535\n".to_string();
let mut resp = Vec::new();
resp.push(resp_string);
//tell the frame task to send our response
Expand Down