signal callback delegate or function to connect
void callback(soup.server_message.ServerMessage message, soup.server.Server server)
message the new message (optional)
server the instance the signal is connected to (optional)
Yes.After to execute callback after default handler, No.After to execute before (default)
Signal ID
Connect to RequestStarted signal.
Emitted when the server has started reading a new request.
message will be completely blank; not even the Request-Line will have been read yet. About the only thing you can usefully do with it is connect to its signals.
If the request is read successfully, this will eventually be followed by a signalServer::request_read signal. If a response is then sent, the request processing will end with a signalServer::request-finished signal. If a network error occurs, the processing will instead end with signalServer::request-aborted.