Mercurial > hg > orthanc
diff OrthancServer/main.cpp @ 473:c9a5d72f8481
changing the namespace of HTTP enumerations
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 15 Jul 2013 17:22:13 +0200 |
parents | 53d79c963e4a |
children | e318e9d49815 e0cfb413c86b 489f6a375277 |
line wrap: on
line diff
--- a/OrthancServer/main.cpp Mon Jul 15 13:50:36 2013 +0200 +++ b/OrthancServer/main.cpp Mon Jul 15 17:22:13 2013 +0200 @@ -158,7 +158,7 @@ { } - virtual bool IsAllowed(Orthanc_HttpMethod method, + virtual bool IsAllowed(HttpMethod method, const char* uri, const char* ip, const char* username) const @@ -172,19 +172,19 @@ switch (method) { - case Orthanc_HttpMethod_Get: + case HttpMethod_Get: call.PushString("GET"); break; - case Orthanc_HttpMethod_Put: + case HttpMethod_Put: call.PushString("PUT"); break; - case Orthanc_HttpMethod_Post: + case HttpMethod_Post: call.PushString("POST"); break; - case Orthanc_HttpMethod_Delete: + case HttpMethod_Delete: call.PushString("DELETE"); break;