diff options
author | Hercules.ws <dev@herc.ws> | 2018-11-15 04:01:47 +0100 |
---|---|---|
committer | HerculesWSAPI <dev@herc.ws> | 2018-11-15 04:01:47 +0100 |
commit | 8df29ed9c26a999eed468206e7f7c6132758f234 (patch) | |
tree | cae82e9ef26684148259d88992ad9ae1764f2ca5 /src/plugins/HPMHooking/HPMHooking_char.Hooks.inc | |
parent | 47d6523817646f2d4f081b93ec44a971a01fce25 (diff) | |
download | hercules-8df29ed9c26a999eed468206e7f7c6132758f234.tar.gz hercules-8df29ed9c26a999eed468206e7f7c6132758f234.tar.bz2 hercules-8df29ed9c26a999eed468206e7f7c6132758f234.tar.xz hercules-8df29ed9c26a999eed468206e7f7c6132758f234.zip |
HPM Hooks Update
Signed-off-by: HerculesWSAPI <dev@herc.ws>
Diffstat (limited to 'src/plugins/HPMHooking/HPMHooking_char.Hooks.inc')
-rw-r--r-- | src/plugins/HPMHooking/HPMHooking_char.Hooks.inc | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/plugins/HPMHooking/HPMHooking_char.Hooks.inc b/src/plugins/HPMHooking/HPMHooking_char.Hooks.inc index df39880b6..5f20fd224 100644 --- a/src/plugins/HPMHooking/HPMHooking_char.Hooks.inc +++ b/src/plugins/HPMHooking/HPMHooking_char.Hooks.inc @@ -18449,6 +18449,32 @@ int HP_sockt_wfifoset(int fd, size_t len, bool validate) { } return retVal___; } +void HP_sockt_wfifohead(int fd, size_t len) { + int hIndex = 0; + if (HPMHooks.count.HP_sockt_wfifohead_pre > 0) { + void (*preHookFunc) (int *fd, size_t *len); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_wfifohead_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_sockt_wfifohead_pre[hIndex].func; + preHookFunc(&fd, &len); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.sockt.wfifohead(fd, len); + } + if (HPMHooks.count.HP_sockt_wfifohead_post > 0) { + void (*postHookFunc) (int fd, size_t len); + for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_wfifohead_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_sockt_wfifohead_post[hIndex].func; + postHookFunc(fd, len); + } + } + return; +} int HP_sockt_rfifoskip(int fd, size_t len) { int hIndex = 0; int retVal___ = 0; |