-
Notifications
You must be signed in to change notification settings - Fork 5k
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
this is invalid config on latest release:
"streamSettings": {
"network": "httpupgrade"
},
the error message is:
Failed to start: main: failed to create server > app/proxyman/outbound: failed to parse stream settings > transport/internet: unknown transport protocol: httpupgrade
that's surprising because this works:
"streamSettings": {
"network": "ws"
},
in order to fix my httpupgrade config, i have to change it to:
"streamSettings": {
"network": "httpupgrade",
"httpupgradeSettings": {}
},
i traced this error message back to here:
Xray-core/transport/internet/config.go
Line 64 in 07ed094
| return nil, newError("unknown transport protocol: ", name) |
and noticed that there is no ConfigCreator for httpupgrade, but there is one for websocket.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working