Commit 9816a0a4 authored by Kenton Varda's avatar Kenton Varda

Merge branch 'master' of github.com:sandstorm-io/capnproto

parents 92b80c31 41264ae6
...@@ -233,11 +233,11 @@ struct Message { ...@@ -233,11 +233,11 @@ struct Message {
abort @1 :Exception; abort @1 :Exception;
# Sent when a connection is being aborted due to an unrecoverable error. This could be e.g. # Sent when a connection is being aborted due to an unrecoverable error. This could be e.g.
# because the sender received an invalid or nonsensical message (`isCallersFault` is true) or # because the sender received an invalid or nonsensical message or because the sender had an
# because the sender had an internal error (`isCallersFault` is false). The sender will shut # internal error. The sender will shut down the outgoing half of the connection after `abort`
# down the outgoing half of the connection after `abort` and will completely close the # and will completely close the connection shortly thereafter (it's up to the sender how much
# connection shortly thereafter (it's up to the sender how much of a time buffer they want to # of a time buffer they want to offer for the client to receive the `abort` before the
# offer for the client to receive the `abort` before the connection is reset). # connection is reset).
# Level 0 features ----------------------------------------------- # Level 0 features -----------------------------------------------
......
...@@ -96,7 +96,7 @@ enum class HttpMethod { ...@@ -96,7 +96,7 @@ enum class HttpMethod {
#define DECLARE_METHOD(id) id, #define DECLARE_METHOD(id) id,
KJ_HTTP_FOR_EACH_METHOD(DECLARE_METHOD) KJ_HTTP_FOR_EACH_METHOD(DECLARE_METHOD)
#undef DECALRE_METHOD #undef DECLARE_METHOD
}; };
kj::StringPtr KJ_STRINGIFY(HttpMethod method); kj::StringPtr KJ_STRINGIFY(HttpMethod method);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment