diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-11-30 22:13:47 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-11-30 22:13:47 +0000 |
commit | 1424c78e7e1449854f8330b45705c114619fb855 (patch) | |
tree | a44a74199141ecc4d7bd79d562d178691c54f8e7 /include | |
parent | efda5071934b078dd939a53cde317e60a11ba401 (diff) |
Removed old OnUserSync and OnChannelSync
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2071 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/modules.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/modules.h b/include/modules.h index 008604d9f..ec49c90dc 100644 --- a/include/modules.h +++ b/include/modules.h @@ -468,20 +468,6 @@ class Module : public classbase */ virtual int OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type); - /** Called during a netburst to sync user data. - * This is called during the netburst on a per-user basis. You should use this call to up any special - * user-related things which are implemented by your module, e.g. sending listmodes. You may return - * multiple commands in the string_list. - */ - virtual string_list OnUserSync(userrec* user); - - /** Called during a netburst to sync channel data. - * This is called during the netburst on a per-channel basis. You should use this call to up any special - * channel-related things which are implemented by your module, e.g. sending listmodes. You may return - * multiple commands in the string_list. - */ - virtual string_list OnChannelSync(chanrec* chan); - /** Called when a 005 numeric is about to be output. * The module should modify the 005 numeric if needed to indicate its features. */ |