Mercurial > hg > orthanc
comparison Core/HttpServer/MongooseServer.cpp @ 912:dcb2469f00f4 plugins
PluginsHttpHandler::RestApiGet
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 20 Jun 2014 14:55:24 +0200 |
parents | 306afd58a0b3 |
children | 8d1845feb277 |
comparison
equal
deleted
inserted
replaced
911:306afd58a0b3 | 912:dcb2469f00f4 |
---|---|
579 | 579 |
580 // Extract the GET arguments | 580 // Extract the GET arguments |
581 HttpHandler::Arguments argumentsGET; | 581 HttpHandler::Arguments argumentsGET; |
582 if (!strcmp(request->request_method, "GET")) | 582 if (!strcmp(request->request_method, "GET")) |
583 { | 583 { |
584 HttpHandler::ParseGetQuery(argumentsGET, request->query_string); | 584 HttpHandler::ParseGetArguments(argumentsGET, request->query_string); |
585 } | 585 } |
586 | 586 |
587 | 587 |
588 // Compute the HTTP method, taking method faking into consideration | 588 // Compute the HTTP method, taking method faking into consideration |
589 HttpMethod method; | 589 HttpMethod method; |