diff options
Diffstat (limited to 'include/modules.h')
-rw-r--r-- | include/modules.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/modules.h b/include/modules.h index cf5d87f6f..fd9d1765b 100644 --- a/include/modules.h +++ b/include/modules.h @@ -495,6 +495,16 @@ class Server : public classbase * linked servers. */ virtual void ChangeGECOS(userrec* user, std::string gecos); + + /** Returns true if the servername you give is ulined. + * ULined servers have extra privilages. They are allowed to change nicknames on remote servers, + * change modes of clients which are on remote servers and set modes of channels where there are + * no channel operators for that channel on the ulined server, amongst other things. Ulined server + * data is also broadcast across the mesh at all times as opposed to selectively messaged in the + * case of normal servers, as many ulined server types (such as services) do not support meshed + * links and must operate in this manner. + */ + virtual bool IsUlined(std::string server); }; /** Allows reading of values from configuration files |