You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In quic client. It seems that we do not check the scheme(mqtt-tcp or mqtt-quic) before it goes to quic transport layer. So you can connect to mqtt broker over quic (on 14567 port).
But quic client is NOT supported to connect to mqtt broker over tcp (on 1883 port) if you don't modify the codes therein.
We will fix the scheme check problem at later. And if you want to connect mqtt broker over tcp. You could use mqtt or mqtt_async example.
Describe the bug
In quic demo, connect mq over tcp fail.
Expected behavior
Connect successful.
Actual Behavior
Connect fail.
To Reproduce
** Environment Details **
mqx config:
listeners.tcp.default {
bind = "0.0.0.0:1883"
max_connections = 1024000
}
listeners.quic.default {
enabled = true
bind = "0.0.0.0:14567"
max_connections = 1024000
}
Additional context
connect mqtt-tcp://10.192.8.158:1883 fail, but connect to mqtt-tcp://10.192.8.158:14567 successful, console output:
The text was updated successfully, but these errors were encountered: