| 831 | center->dispatch_event_external(&read_ctxt); |
| 832 | } |
| 833 | void close() { |
| 834 | ASSERT_FALSE(write_enabled); |
| 835 | socket.shutdown(); |
| 836 | center->delete_file_event(socket.fd(), EVENT_READABLE); |
| 837 | center->dispatch_event_external(new C_delete<Server>(this)); |
| 838 | } |
| 839 | void do_read_request() { |
| 840 | if (dead) |
| 841 | return ; |
nothing calls this directly
no test coverage detected