@@ -13,62 +13,62 @@ namespace boost { namespace network { namespace http {
1313
1414template <>
1515struct headers_ <tags::http_default_8bit_tcp_resolve> {
16- static char const *const host () {
16+ static char const *host () {
1717static char const *const HOST =" Host" ;
1818return HOST;
1919 };
2020
21- static char const *const cookie () {
21+ static char const *cookie () {
2222static char const *const COOKIE =" Cookie" ;
2323return COOKIE;
2424 };
2525
26- static char const *const set_cookie () {
26+ static char const *set_cookie () {
2727static char const *const SET_COOKIE =" Set-Cookie" ;
2828return SET_COOKIE;
2929 };
3030
31- static char const *const connection () {
31+ static char const *connection () {
3232static char const *const CONNECTION =" Connection" ;
3333return CONNECTION;
3434 };
3535
36- static char const *const content_type () {
36+ static char const *content_type () {
3737static char const *const CONTENT_TYPE =" Content-Type" ;
3838return CONTENT_TYPE;
3939 };
4040
41- static char const *const content_length () {
41+ static char const *content_length () {
4242static char const *const CONTENT_LENGTH =" Content-Length" ;
4343return CONTENT_LENGTH;
4444 };
4545
46- static char const *const content_location () {
46+ static char const *content_location () {
4747static char const *const CONTENT_LOCATION =" Content-Location" ;
4848return CONTENT_LOCATION;
4949 };
5050
51- static char const *const last_modified () {
51+ static char const *last_modified () {
5252static char const *const LAST_MODIFIED =" Last-Modified" ;
5353return LAST_MODIFIED;
5454 };
5555
56- static char const *const if_modified_since () {
56+ static char const *if_modified_since () {
5757static char const *const IF_MODIFIED_SINCE =" If-Modified-Since" ;
5858return IF_MODIFIED_SINCE;
5959 };
6060
61- static char const *const transfer_encoding () {
61+ static char const *transfer_encoding () {
6262static char const *const TRANSFER_ENCODING =" Transfer-Encoding" ;
6363return TRANSFER_ENCODING;
6464 };
6565
66- static char const *const location () {
66+ static char const *location () {
6767static char const *const LOCATION =" Location" ;
6868return LOCATION;
6969 };
7070
71- static char const *const authorization () {
71+ static char const *authorization () {
7272static char const *const AUTHORIZATION =" Authorization" ;
7373return AUTHORIZATION;
7474 };