docs: refine gRPC guide section numbers and add CloseAndRecv & fileStore explanations

This commit is contained in:
2026-07-17 22:15:58 +09:00
parent d90553ecdf
commit 50f63633ea
23 changed files with 2964 additions and 130 deletions
+17
View File
@@ -0,0 +1,17 @@
syntax = "proto3";
option go_package = "./protoapi/;protoapi";
service Http3Service {
rpc Ping (PingRequest) returns (PingResponse);
rpc StreamPing (stream PingRequest) returns (stream PingResponse);
}
message PingRequest {
string Message = 1;
}
message PingResponse {
string Message = 1;
string Transport = 2; // Should return "quic"
}