Multiple webrtc servers/workers with 1 port?

It is really good to have webrtc server, but it limits to 1 worker/cpu per server/port.
I hope to have multiple workers working on 1 single port.
Then we would listen on 443, with vertical scaling ready.

If it is not supported yet, do we have plan to do so, or it is technically not possible?

1 Worker == 1 separate process. Cannot listen in same port (despite its possible in Linux) because connections must be handled by a single Worker and not by anyone.

despite its possible in Linux

I guess we need to rewrite most of the things to get it done properly. As I understand, we just need to pass the data around processes, and that could be very difficult with cpp.
I have seen a lot of code being written in rust, if we can completely rebind or rewrite it to rust, would it be easier than cpp to add support for this?

Honestly making meriapsup be able to listen on a single UDP and TCP port across different workers/processes is not a goal. mediasoup is efficient thanks to its single thread design, we don’t want to change that just to make it easier for the parent application to handle listening ports. Honestly it’s not that hard to program an application that opens and managed more than one port.