git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Correcting case insensitive search
[stg.git]
/
projects
/
sgconf
/
common_sg.h
diff --git
a/projects/sgconf/common_sg.h
b/projects/sgconf/common_sg.h
index a654748a68f744ea558ef309d5d2702d21447c4e..323a8cf8f1dead9d437ef6c2c554af29f4455509 100644
(file)
--- a/
projects/sgconf/common_sg.h
+++ b/
projects/sgconf/common_sg.h
@@
-28,11
+28,15
@@
#ifndef COMMON_SG_H
#define COMMON_SG_H
#ifndef COMMON_SG_H
#define COMMON_SG_H
-#include <string>
-
#include "stg/servconf.h"
#include "stg/servconf.h"
+#include "stg/servconf_types.h"
#include "request.h"
#include "request.h"
+#include <string>
+
+struct USER_CONF_RES;
+struct USER_STAT_RES;
+
void UsageConf();
void UsageInfo();
void UsageConf();
void UsageInfo();
@@
-45,20
+49,29
@@
int CheckLogin(const char * login);
void ConvertFromKOI8(const std::string & src, std::string * dst);
void ConvertToKOI8(const std::string & src, std::string * dst);
void ConvertFromKOI8(const std::string & src, std::string * dst);
void ConvertToKOI8(const std::string & src, std::string * dst);
-
int ProcessGetUser(const std::string &
server,
- int port,
-
const std::string &
admLogin,
-
const std::string &
admPasswd,
-
const std::string &
login,
-
void * data
);
+
bool ProcessGetUser(const std::string &
server,
+
int port,
+
const std::string &
admLogin,
+
const std::string &
admPasswd,
+
const std::string &
login,
+
REQUEST & request
);
-
int ProcessSetUser(const std::string &
server,
+
bool ProcessAuthBy(const std::string &
server,
int port,
int port,
- const std::string &admLogin,
- const std::string &admPasswd,
- const std::string &str,
- void * data,
- bool isMessage = false);
+ const std::string & admLogin,
+ const std::string & admPasswd,
+ const std::string & login);
-#endif
+bool ProcessSetUser(const std::string & server,
+ int port,
+ const std::string & admLogin,
+ const std::string & admPasswd,
+ const std::string & user,
+ const USER_CONF_RES & conf,
+ const USER_STAT_RES & stat);
+bool ProcessSendMessage(const std::string & server, uint16_t port,
+ const std::string & login, const std::string & password,
+ const std::string & user, const std::string & text);
+
+#endif