Changeset aa2a26950f252650791db1d942c440543fdd3992
- Timestamp:
- 07/10/12 15:19:03
(1 year ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1341933543 -0400
- git-parent:
[5aafe929cf70ac47fd158efa700b0c5c45cd5abb]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1341933543 -0400
- Message:
add accessor for response bytes_written
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r5aafe92 |
raa2a269 |
|
| 269 | 269 | noit_boolean noit_http_response_complete(noit_http_response *res) { |
|---|
| 270 | 270 | return res->complete; |
|---|
| | 271 | } |
|---|
| | 272 | size_t noit_http_response_bytes_written(noit_http_response *res) { |
|---|
| | 273 | return res->bytes_written; |
|---|
| 271 | 274 | } |
|---|
| 272 | 275 | |
|---|
| r5aafe92 |
raa2a269 |
|
| 139 | 139 | API_EXPORT(noit_boolean) |
|---|
| 140 | 140 | noit_http_response_complete(noit_http_response *); |
|---|
| | 141 | API_EXPORT(size_t) |
|---|
| | 142 | noit_http_response_bytes_written(noit_http_response *); |
|---|
| 141 | 143 | |
|---|
| 142 | 144 | API_EXPORT(void) |
|---|