Martin Maartensson

Results 3 comments of Martin Maartensson

I have a similar issue except everything is in the same crate. I would like to be able to import a protofile into another. Compiling and accessing the members of...

I figured out in my case the problem was my own fault. I think I should have called this one "shared" and not "proto_shared" ```rs mod proto_shared { tonic::include_proto!("shared"); }...

I've been working on running a QUIC application locally over Unixgram, and I've successfully set up the listener using the `net.PacketConn` obtained from `net.ListenPacket("unixgram", socketFile)` passed into `quic.Listen()`. However, when...