This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // https://github.com/nodejs/io.js/blob/8be6060020cd2f18ec6c1a5c3a40eb07b8d0e455/lib/_http_server.js#L18 | |
| var HTTP_STATUS_CODE = { | |
| 100 : 'Continue', | |
| 101 : 'Switching Protocols', | |
| 102 : 'Processing', // RFC 2518, obsoleted by RFC 4918 | |
| 200 : 'OK', | |
| 201 : 'Created', | |
| 202 : 'Accepted', | |
| 203 : 'Non-Authoritative Information', |