diff options
| author | Jeff Carr <[email protected]> | 2025-09-09 18:02:31 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-09 18:02:31 -0500 |
| commit | 3306e3cbbc48eea6eb2666c8f3d5a2f250db46a3 (patch) | |
| tree | d5579bb5269cf72f7733a608ec6f555180c20abd /httpRequest.proto | |
| parent | cd656f489e14ae47f8c2fb4304a58a85037556a2 (diff) | |
Diffstat (limited to 'httpRequest.proto')
| -rw-r--r-- | httpRequest.proto | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/httpRequest.proto b/httpRequest.proto index f165c9b..82c04a0 100644 --- a/httpRequest.proto +++ b/httpRequest.proto @@ -25,6 +25,9 @@ message HttpRequest { // HttpRequest repre bytes serverData = 13; // the server response int64 serverDataLen = 14; // len(data) repeated string logs = 15; // use this to store whatever you want while the whole POST happens + string userAgent = 16; // client user-agent + map<string, string> query = 17; // r.URL.Query() + string remoteAddr = 18; // r.RemoteAddr } message HttpRequests { // `autogenpb:marshal` `autogenpb:mutex` |
