Get/set status-code and reason-phrase. Notice that the const char returned by reason_phrase() will be invalidated after next call to set_status_code().
| 134 | // returned by reason_phrase() will be invalidated after next call to |
| 135 | // set_status_code(). |
| 136 | int status_code() const { return _status_code; } |
| 137 | const char* reason_phrase() const; |
| 138 | void set_status_code(int status_code); |
| 139 |
no outgoing calls