You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -111,6 +111,12 @@ from firegex.nfproxy import HttpRequestHeader
111
111
```
112
112
This handler will be called only when the request headers are complete. It will receive a HttpRequestHeader object with the same properties as HttpRequest.
113
113
114
+
### HttpFullRequest
115
+
```python
116
+
from firegex.nfproxy import HttpFullRequest
117
+
```
118
+
This handler will be called only when the request is complete. It will receive a HttpFullRequest object with the same properties as HttpRequest.
119
+
114
120
### HttpResponse
115
121
```python
116
122
from firegex.nfproxy import HttpResponse
@@ -138,3 +144,8 @@ from firegex.nfproxy import HttpResponseHeader
138
144
```
139
145
This handler will be called only when the response headers are complete. It will receive a HttpResponseHeader object with the same properties as HttpResponse.
140
146
147
+
### HttpFullResponse
148
+
```python
149
+
from firegex.nfproxy import HttpFullResponse
150
+
```
151
+
This handler will be called only when the response is complete. It will receive a HttpFullResponse object with the same properties as HttpResponse.
0 commit comments