comparison PalantirServer/PalantirInitialization.h @ 25:dd1489098265

basic http authentication
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 28 Aug 2012 11:20:49 +0200
parents 62bd05fe4b7c
children
comparison
equal deleted inserted replaced
24:166664f0f860 25:dd1489098265
21 #pragma once 21 #pragma once
22 22
23 #include <string> 23 #include <string>
24 #include <set> 24 #include <set>
25 #include <json/json.h> 25 #include <json/json.h>
26 #include "../Core/HttpServer/MongooseServer.h"
26 27
27 namespace Palantir 28 namespace Palantir
28 { 29 {
29 void PalantirInitialize(const char* configurationFile = NULL); 30 void PalantirInitialize(const char* configurationFile = NULL);
30 31
43 std::string& aet, 44 std::string& aet,
44 std::string& address, 45 std::string& address,
45 int& port); 46 int& port);
46 47
47 void GetListOfDicomModalities(std::set<std::string>& target); 48 void GetListOfDicomModalities(std::set<std::string>& target);
49
50 void SetupRegisteredUsers(MongooseServer& httpServer);
48 } 51 }