X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fstatus.h;h=075016dd48aee2c6acc17fc345a48746d6bb306a;hb=1c965907682f4714db7b952915cf5b6bf9b7f4c1;hp=0ea001d43e3487fe0324b475586c442592848e5c;hpb=a4049d7c4126126ca3abd12b1aca8715e7006d44;p=libs%2Fnet.git diff --git a/source/status.h b/source/status.h index 0ea001d..075016d 100644 --- a/source/status.h +++ b/source/status.h @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of libmsphttp -Copyright © 2008 Mikkosoft Productions, Mikko Rasa -Distributed under the LGPL -*/ - #ifndef MSP_HTTPSERVER_STATUS_H_ #define MSP_HTTPSERVER_STATUS_H_ @@ -15,13 +8,13 @@ namespace Http { enum Status { - NONE=0, - OK=200, - BAD_REQUEST=400, - FORBIDDEN=403, - NOT_FOUND=404, - INTERNAL_ERROR=500, - NOT_IMPLEMENTED=501 + NONE = 0, + OK = 200, + BAD_REQUEST = 400, + FORBIDDEN = 403, + NOT_FOUND = 404, + INTERNAL_ERROR = 500, + NOT_IMPLEMENTED = 501 }; extern std::ostream &operator<<(std::ostream &, Status);