| 1127 | { |
| 1128 | public: |
| 1129 | ConnectionProcess(const network::Socket& _socket) |
| 1130 | : ProcessBase(ID::generate("__http_connection__")), |
| 1131 | socket(_socket), |
| 1132 | sendChain(Nothing()), |
| 1133 | close(false) {} |
| 1134 | |
| 1135 | Future<Response> send(const Request& request, bool streamedResponse) |
| 1136 | { |
nothing calls this directly
no test coverage detected