diff options
| author | Jeff Carr <[email protected]> | 2025-09-08 12:42:37 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-08 12:42:37 -0500 |
| commit | eaf3e1d5a7ee2407654a5156879c586a088a1f23 (patch) | |
| tree | 3a7a3db36b7b9d14f89ff073439036cbb0b2c121 | |
| parent | 09c36a87b30a6ddf97e3b5a7bd77d36834441aa5 (diff) | |
add a Log
| -rw-r--r-- | httpRequest.proto | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/httpRequest.proto b/httpRequest.proto index e2ad1a7..8b1c86b 100644 --- a/httpRequest.proto +++ b/httpRequest.proto @@ -24,6 +24,7 @@ message HttpRequest { // HttpRequest repre int64 clientDataLen = 12; // len(body) bytes serverData = 13; // the server response int64 serverDataLen = 14; // len(data) + repeated string log = 15; // use this to store whatever you want while the whole POST happens } message HttpRequests { // `autogenpb:marshal` `autogenpb:mutex` |
