wirebox icon indicating copy to clipboard operation
wirebox copied to clipboard

Update protocol to not use custom framing

Open foxcpp opened this issue 5 years ago • 0 comments

message Request {
  message CfgSolict { ... }
  one of req {
    CfgSolict cfgSolict = 1;
  }
}

message Reply {
  message Cfg { ... }
  message Nack { ... }
  one of reply {
    Cfg cfg = 1;
    Nack nack = 2;
  }
}

foxcpp avatar Mar 16 '20 00:03 foxcpp