Commit 5d201cc4d50d3b23beef6a9f64ab3307176e5661
1 parent
e38b1754
message_receiver is now public
Showing
2 changed files
with
4 additions
and
4 deletions
Show diff stats
net_services/CXM_net_services.anubis
web/CXM_multihost_http_server.anubis
| ... | ... | @@ -3571,16 +3571,16 @@ define Server -> ((RWStream) -> One) |
| 3571 | 3571 | ( |
| 3572 | 3572 | Var(List(DispatcherInfo)) info_v, |
| 3573 | 3573 | DenialOfService dos, |
| 3574 | - SState s | |
| 3574 | + SState ss | |
| 3575 | 3575 | ) = |
| 3576 | 3576 | (Server server) |-> (RWStream conn) |-> |
| 3577 | 3577 | with start_time = (Int)now, |
| 3578 | 3578 | connection = buffered_connection(tcp(conn), var(constant_byte_array(0, 0)), var(0)), |
| 3579 | - if read_request_line(connection, start_time+*request_line_delay(dos), dos, s) is | |
| 3579 | + if read_request_line(connection, start_time+*request_line_delay(dos), dos, ss) is | |
| 3580 | 3580 | { |
| 3581 | 3581 | error(msg) then print(format(msg)), |
| 3582 | 3582 | ok(request_line) then |
| 3583 | - if read_http_headers(connection, start_time+*headers_delay(dos), dos, s) is | |
| 3583 | + if read_http_headers(connection, start_time+*headers_delay(dos), dos, ss) is | |
| 3584 | 3584 | { |
| 3585 | 3585 | error(msg) then print(format(msg)), |
| 3586 | 3586 | ok(headers) then if get_host_header_value(headers) is | ... | ... |