fix: fix sending back incorrect supported functions
This commit is contained in:
parent
e7d0a17500
commit
1d1781c7d7
5 changed files with 30 additions and 11 deletions
10
src/main.rs
10
src/main.rs
|
|
@ -278,7 +278,9 @@ async fn start_auth() -> JoinHandle<()> {
|
|||
.expect("unable to start router");
|
||||
|
||||
let mut socket_secure = router_secure
|
||||
.add_socket(VirtualPort::new(1, 10), Unsecure("6f599f81"))
|
||||
.add_socket(VirtualPort::new(1, 10), Unsecure(
|
||||
"6f599f81"
|
||||
))
|
||||
.await
|
||||
.expect("unable to add socket");
|
||||
|
||||
|
|
@ -322,8 +324,10 @@ async fn start_secure() -> JoinHandle<()> {
|
|||
let mut socket_secure = router_secure
|
||||
.add_socket(
|
||||
VirtualPort::new(1, 10),
|
||||
Secure("6f599f81", &SECURE_SERVER_ACCOUNT),
|
||||
//Unsecure("6f599f81"),
|
||||
Secure(
|
||||
"6f599f81",
|
||||
&SECURE_SERVER_ACCOUNT
|
||||
),
|
||||
)
|
||||
.await
|
||||
.expect("unable to add socket");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue