rsocket / rsocket-cpp

C++ implementation of RSocket
http://rsocket.io
Apache License 2.0
253 stars 99 forks source link

TLS support #914

Open chensinian24 opened 3 months ago

chensinian24 commented 3 months ago

Do we have a TLS/SSL example of TCP?

carun commented 3 months ago

@chensinian24 I would suggest not using this project as it is not maintained anymore. The last commit was ~4 years ago.

chensinian24 commented 3 months ago

@chensinian24 I would suggest not using this project as it is not maintained anymore. The last commit was ~4 years ago.

sad news. Our company wants to use this project as the implemention of rsoket protocol on Embedded device.

carun commented 3 months ago

sad news. Our company wants to use this project as the implemention of rsoket protocol on Embedded device.

Any particular reason? Alternatively you can use MQTT as it's lightweight. If you need a near real-time protocol, I'd suggest using gRPC.

chensinian24 commented 3 months ago

sad news. Our company wants to use this project as the implemention of rsoket protocol on Embedded device.

Any particular reason? Alternatively you can use MQTT as it's lightweight. If you need a near real-time protocol, I'd suggest using gRPC.

thanks for your advice. We do some research and think rsocket protocol have advantages on Flow Control and Reactive, which will help us to build a more efficent channel between cloud and device to support our speech project.

carun commented 3 months ago

sad news. Our company wants to use this project as the implemention of rsoket protocol on Embedded device.

Any particular reason? Alternatively you can use MQTT as it's lightweight. If you need a near real-time protocol, I'd suggest using gRPC.

thanks for your advice. We do some research and think rsocket protocol have advantages on Flow Control and Reactive, which will help us to build a more efficent channel between cloud and device to support our speech project.

We use SRTP for similar use cases, that allows to use any audio format as well. The latency will be less than 50 ms. Hope it helps.