summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHercules.ws <Hercules@efficiently.awesome>2016-01-10 03:14:01 +0100
committerHerculesWSAPI <Hercules@efficiently.awesome>2016-01-10 03:14:01 +0100
commitc539ab8c255c5023202b2a5eb8322964a96b71c3 (patch)
tree5a2e4a7a56c4d7cd05c98a04fb227bd08b27ddbe /src
parentad19ef3bf754e0ea64dd9c3b6eabfa4c7ced00f5 (diff)
downloadhercules-c539ab8c255c5023202b2a5eb8322964a96b71c3.tar.gz
hercules-c539ab8c255c5023202b2a5eb8322964a96b71c3.tar.bz2
hercules-c539ab8c255c5023202b2a5eb8322964a96b71c3.tar.xz
hercules-c539ab8c255c5023202b2a5eb8322964a96b71c3.zip
HPM Hooks Update
Signed-off-by: HerculesWSAPI <Hercules@efficiently.awesome>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/HPMHooking/HPMHooking_login.HPMHooksCore.inc8
-rw-r--r--src/plugins/HPMHooking/HPMHooking_login.HookingPoints.inc2
-rw-r--r--src/plugins/HPMHooking/HPMHooking_login.Hooks.inc53
3 files changed, 63 insertions, 0 deletions
diff --git a/src/plugins/HPMHooking/HPMHooking_login.HPMHooksCore.inc b/src/plugins/HPMHooking/HPMHooking_login.HPMHooksCore.inc
index 3a8bb2a5f..ce78fdd7e 100644
--- a/src/plugins/HPMHooking/HPMHooking_login.HPMHooksCore.inc
+++ b/src/plugins/HPMHooking/HPMHooking_login.HPMHooksCore.inc
@@ -314,6 +314,10 @@ struct {
struct HPMHookPoint *HP_login_parse_request_connection_post;
struct HPMHookPoint *HP_login_parse_login_pre;
struct HPMHookPoint *HP_login_parse_login_post;
+ struct HPMHookPoint *HP_login_config_set_defaults_pre;
+ struct HPMHookPoint *HP_login_config_set_defaults_post;
+ struct HPMHookPoint *HP_login_config_read_pre;
+ struct HPMHookPoint *HP_login_config_read_post;
struct HPMHookPoint *HP_iMalloc_init_pre;
struct HPMHookPoint *HP_iMalloc_init_post;
struct HPMHookPoint *HP_iMalloc_final_pre;
@@ -887,6 +891,10 @@ struct {
int HP_login_parse_request_connection_post;
int HP_login_parse_login_pre;
int HP_login_parse_login_post;
+ int HP_login_config_set_defaults_pre;
+ int HP_login_config_set_defaults_post;
+ int HP_login_config_read_pre;
+ int HP_login_config_read_post;
int HP_iMalloc_init_pre;
int HP_iMalloc_init_post;
int HP_iMalloc_final_pre;
diff --git a/src/plugins/HPMHooking/HPMHooking_login.HookingPoints.inc b/src/plugins/HPMHooking/HPMHooking_login.HookingPoints.inc
index 959bb076f..5be52d51e 100644
--- a/src/plugins/HPMHooking/HPMHooking_login.HookingPoints.inc
+++ b/src/plugins/HPMHooking/HPMHooking_login.HookingPoints.inc
@@ -175,6 +175,8 @@ struct HookingPointData HookingPoints[] = {
{ HP_POP(login->char_server_connection_status, HP_login_char_server_connection_status) },
{ HP_POP(login->parse_request_connection, HP_login_parse_request_connection) },
{ HP_POP(login->parse_login, HP_login_parse_login) },
+ { HP_POP(login->config_set_defaults, HP_login_config_set_defaults) },
+ { HP_POP(login->config_read, HP_login_config_read) },
/* iMalloc */
{ HP_POP(iMalloc->init, HP_iMalloc_init) },
{ HP_POP(iMalloc->final, HP_iMalloc_final) },
diff --git a/src/plugins/HPMHooking/HPMHooking_login.Hooks.inc b/src/plugins/HPMHooking/HPMHooking_login.Hooks.inc
index 2e2d9e619..670083e94 100644
--- a/src/plugins/HPMHooking/HPMHooking_login.Hooks.inc
+++ b/src/plugins/HPMHooking/HPMHooking_login.Hooks.inc
@@ -3914,6 +3914,59 @@ int HP_login_parse_login(int fd) {
}
return retVal___;
}
+void HP_login_config_set_defaults(void) {
+ int hIndex = 0;
+ if( HPMHooks.count.HP_login_config_set_defaults_pre ) {
+ void (*preHookFunc) (void);
+ *HPMforce_return = false;
+ for(hIndex = 0; hIndex < HPMHooks.count.HP_login_config_set_defaults_pre; hIndex++ ) {
+ preHookFunc = HPMHooks.list.HP_login_config_set_defaults_pre[hIndex].func;
+ preHookFunc();
+ }
+ if( *HPMforce_return ) {
+ *HPMforce_return = false;
+ return;
+ }
+ }
+ {
+ HPMHooks.source.login.config_set_defaults();
+ }
+ if( HPMHooks.count.HP_login_config_set_defaults_post ) {
+ void (*postHookFunc) (void);
+ for(hIndex = 0; hIndex < HPMHooks.count.HP_login_config_set_defaults_post; hIndex++ ) {
+ postHookFunc = HPMHooks.list.HP_login_config_set_defaults_post[hIndex].func;
+ postHookFunc();
+ }
+ }
+ return;
+}
+int HP_login_config_read(const char *cfgName) {
+ int hIndex = 0;
+ int retVal___ = 0;
+ if( HPMHooks.count.HP_login_config_read_pre ) {
+ int (*preHookFunc) (const char *cfgName);
+ *HPMforce_return = false;
+ for(hIndex = 0; hIndex < HPMHooks.count.HP_login_config_read_pre; hIndex++ ) {
+ preHookFunc = HPMHooks.list.HP_login_config_read_pre[hIndex].func;
+ retVal___ = preHookFunc(cfgName);
+ }
+ if( *HPMforce_return ) {
+ *HPMforce_return = false;
+ return retVal___;
+ }
+ }
+ {
+ retVal___ = HPMHooks.source.login.config_read(cfgName);
+ }
+ if( HPMHooks.count.HP_login_config_read_post ) {
+ int (*postHookFunc) (int retVal___, const char *cfgName);
+ for(hIndex = 0; hIndex < HPMHooks.count.HP_login_config_read_post; hIndex++ ) {
+ postHookFunc = HPMHooks.list.HP_login_config_read_post[hIndex].func;
+ retVal___ = postHookFunc(retVal___, cfgName);
+ }
+ }
+ return retVal___;
+}
/* iMalloc */
void HP_iMalloc_init(void) {
int hIndex = 0;