git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add async pool (to replace EVENT_LOOP).
[stg.git]
/
projects
/
sgconf
/
xml.cpp
diff --git
a/projects/sgconf/xml.cpp
b/projects/sgconf/xml.cpp
index abf2ccc62e96f8643a9ff808d5a344c7d3964bd7..93a06e23197926b2967b17af88214bddd793ebe4 100644
(file)
--- a/
projects/sgconf/xml.cpp
+++ b/
projects/sgconf/xml.cpp
@@
-2,6
+2,7
@@
#include "api_action.h"
#include "options.h"
#include "api_action.h"
#include "options.h"
+#include "makeproto.h"
#include "config.h"
#include "stg/servconf.h"
#include "config.h"
#include "stg/servconf.h"
@@
-87,13
+88,7
@@
bool RawXMLFunction(const SGCONF::CONFIG & config,
const std::string & arg,
const std::map<std::string, std::string> & /*options*/)
{
const std::string & arg,
const std::map<std::string, std::string> & /*options*/)
{
-STG::SERVCONF proto(config.server.data(),
- config.port.data(),
- config.localAddress.data(),
- config.localPort.data(),
- config.userName.data(),
- config.userPass.data());
-return proto.RawXML(arg, RawXMLCallback, NULL) == STG::st_ok;
+return makeProto(config).RawXML(arg, RawXMLCallback, NULL) == STG::st_ok;
}
}
}
}