The message has to be constructed in C code. My current implementation is :
1. construct grpc message in C and pass it as bytes to GO code through channel;
2. in Go code, call proto.unmarshal to get grpc message;
3. Send the grpc message out via stream.Send(grpcmsg)
What we want is to skip this unmarshal because we've already constructed the grpc message in C. Is there any way to do a type cast thing to skip unmarshal?
Thanks
Steven