| 1213 | { |
| 1214 | public: |
| 1215 | ConnectionProcess(const network::Socket& _socket) |
| 1216 | : ProcessBase(ID::generate("__http_connection__")), |
| 1217 | socket(_socket), |
| 1218 | sendChain(Nothing()), |
| 1219 | close(false) {} |
| 1220 | |
| 1221 | Future<Response> send(const Request& request, bool streamedResponse) |
| 1222 | { |