X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=blobdiff_plain;f=apps%2Fsilc%2Fclientutil.c;fp=apps%2Fsilc%2Fclientutil.c;h=210f50b02c5d2307f6a8bb4bf12a211bb97e6c38;hp=321160d49055a73f705825eb99be4f0d331f2449;hb=bb1973faaa81ead23b3d5e05b45cddd8a47d51f7;hpb=a998ac107c2bb107764c1c495bd9028e03bfcc37 diff --git a/apps/silc/clientutil.c b/apps/silc/clientutil.c index 321160d4..210f50b0 100644 --- a/apps/silc/clientutil.c +++ b/apps/silc/clientutil.c @@ -729,80 +729,3 @@ int silc_client_load_keys(SilcClient client) return TRUE; } - -/* Parses mode mask and returns the mode as string. */ - -char *silc_client_chmode(unsigned int mode) -{ - char string[20]; - - if (!mode) - return NULL; - - memset(string, 0, sizeof(string)); - - if (mode & SILC_CHANNEL_MODE_PRIVATE) - strncat(string, "p", 1); - - if (mode & SILC_CHANNEL_MODE_SECRET) - strncat(string, "s", 1); - - if (mode & SILC_CHANNEL_MODE_PRIVKEY) - strncat(string, "k", 1); - - if (mode & SILC_CHANNEL_MODE_INVITE) - strncat(string, "i", 1); - - if (mode & SILC_CHANNEL_MODE_TOPIC) - strncat(string, "t", 1); - - if (mode & SILC_CHANNEL_MODE_ULIMIT) - strncat(string, "l", 1); - - if (mode & SILC_CHANNEL_MODE_PASSPHRASE) - strncat(string, "a", 1); - - /* Rest of mode is ignored */ - - return strdup(string); -} - -/* Parses channel user mode mask and returns te mode as string */ - -char *silc_client_chumode(unsigned int mode) -{ - char string[4]; - - if (!mode) - return NULL; - - memset(string, 0, sizeof(string)); - - if (mode & SILC_CHANNEL_UMODE_CHANFO) - strncat(string, "f", 1); - - if (mode & SILC_CHANNEL_UMODE_CHANOP) - strncat(string, "o", 1); - - return strdup(string); -} - -/* Parses channel user mode and returns it as special mode character. */ - -char *silc_client_chumode_char(unsigned int mode) -{ - char string[4]; - - if (!mode) - return NULL; - - memset(string, 0, sizeof(string)); - - if (mode & SILC_CHANNEL_UMODE_CHANFO) - strncat(string, "*", 1); - - if (mode & SILC_CHANNEL_UMODE_CHANOP) - strncat(string, "@", 1); - - return strdup(string); -}