diff options
| author | alexvru <[email protected]> | 2023-04-13 17:44:21 +0300 |
|---|---|---|
| committer | alexvru <[email protected]> | 2023-04-13 17:44:21 +0300 |
| commit | edbc6cad1fc50b1237b88cd16a78fd44777a6601 (patch) | |
| tree | e708ea5a81108faed9173c71c1f37e09b29cef53 /library/cpp/actors/protos | |
| parent | 782ed55b35b9805318a8d26ef040ff62a3875b42 (diff) | |
Implement external data channel: connection
Diffstat (limited to 'library/cpp/actors/protos')
| -rw-r--r-- | library/cpp/actors/protos/interconnect.proto | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/library/cpp/actors/protos/interconnect.proto b/library/cpp/actors/protos/interconnect.proto index eed00fc551d..3108b4f24cc 100644 --- a/library/cpp/actors/protos/interconnect.proto +++ b/library/cpp/actors/protos/interconnect.proto @@ -75,6 +75,8 @@ message THandshakeRequest { optional bool RequestExternalDataChannel = 21; optional bytes CompatibilityInfo = 22; + + optional bytes HandshakeId = 23; } message THandshakeSuccess { @@ -117,3 +119,11 @@ message TEvLoadMessage { optional string Id = 3; // message identifier optional bytes Payload = 4; // data payload } + +message TContinuationParams { + optional bytes HandshakeId = 1; +} + +message TExternalDataChannelParams { + optional bytes HandshakeId = 1; +} |
