diff --git a/src/commands.c b/src/commands.c index bd6b13e..2f3ac44 100644 --- a/src/commands.c +++ b/src/commands.c @@ -142,7 +142,7 @@ static int command_kick(struct hub_info* hub, struct user* user, const char* mes } const char* nick = &message[7]; - struct user* target = get_user_by_nick(hub, nick); + struct user* target = uman_get_user_by_nick(hub, nick); if (!target) { diff --git a/src/hub.c b/src/hub.c index 6778444..f088b9e 100644 --- a/src/hub.c +++ b/src/hub.c @@ -362,7 +362,7 @@ static void hub_event_dispatcher(void* callback_data, struct event_data* message case UHUB_EVENT_USER_QUIT: { uman_remove(hub, (struct user*) message->ptr); - send_quit_message((struct user*) message->ptr); + uman_send_quit_message((struct user*) message->ptr); on_logout_user(hub, (struct user*) message->ptr); user_schedule_destroy((struct user*) message->ptr); break; @@ -611,7 +611,7 @@ void hub_free_variables(struct hub_info* hub) */ static inline int is_nick_in_use(struct hub_info* hub, const char* nick) { - struct user* lookup = get_user_by_nick(hub, nick); + struct user* lookup = uman_get_user_by_nick(hub, nick); if (lookup) { return 1; @@ -625,7 +625,7 @@ static inline int is_nick_in_use(struct hub_info* hub, const char* nick) */ static inline int is_cid_in_use(struct hub_info* hub, const char* cid) { - struct user* lookup = get_user_by_cid(hub, cid); + struct user* lookup = uman_get_user_by_cid(hub, cid); if (lookup) { return 1; diff --git a/src/hubevent.c b/src/hubevent.c index 1462c48..8f852f9 100644 --- a/src/hubevent.c +++ b/src/hubevent.c @@ -52,7 +52,7 @@ void on_login_success(struct hub_info* hub, struct user* u) struct timeval timeout = { TIMEOUT_IDLE, 0 }; /* Send user list of all existing users */ - if (!send_user_list(u)) + if (!uman_send_user_list(u)) return; /* Mark as being in the normal state, and add user to the user list */ diff --git a/src/inf.c b/src/inf.c index 1b032ca..2d29767 100644 --- a/src/inf.c +++ b/src/inf.c @@ -326,8 +326,8 @@ static int check_nick(struct hub_info* hub, struct user* user, struct adc_messag static int check_logged_in(struct hub_info* hub, struct user* user, struct adc_message* cmd) { - struct user* lookup1 = get_user_by_nick(hub, user->id.nick); - struct user* lookup2 = get_user_by_cid(hub, user->id.cid); + struct user* lookup1 = uman_get_user_by_nick(hub, user->id.nick); + struct user* lookup2 = uman_get_user_by_cid(hub, user->id.cid); if (lookup1 == user) { diff --git a/src/route.c b/src/route.c index ac0bfe6..1f2d567 100644 --- a/src/route.c +++ b/src/route.c @@ -31,7 +31,7 @@ int route_message(struct user* u, struct adc_message* msg) break; case 'D': - target = get_user_by_sid(u->hub, msg->target); + target = uman_get_user_by_sid(u->hub, msg->target); if (target) { route_to_user(target, msg); @@ -39,7 +39,7 @@ int route_message(struct user* u, struct adc_message* msg) break; case 'E': - target = get_user_by_sid(u->hub, msg->target); + target = uman_get_user_by_sid(u->hub, msg->target); if (target) { route_to_user(target, msg); diff --git a/src/usermanager.c b/src/usermanager.c index ac8f0a8..df723b8 100644 --- a/src/usermanager.c +++ b/src/usermanager.c @@ -171,7 +171,7 @@ int uman_remove(struct hub_info* hub, struct user* user) } -struct user* get_user_by_sid(struct hub_info* hub, sid_t sid) +struct user* uman_get_user_by_sid(struct hub_info* hub, sid_t sid) { struct user* user = (struct user*) list_get_first(hub->users->list); /* iterate users */ while (user) @@ -184,7 +184,7 @@ struct user* get_user_by_sid(struct hub_info* hub, sid_t sid) } -struct user* get_user_by_cid(struct hub_info* hub, const char* cid) +struct user* uman_get_user_by_cid(struct hub_info* hub, const char* cid) { struct user* user = (struct user*) list_get_first(hub->users->list); /* iterate users - only on incoming INF msg */ while (user) @@ -197,7 +197,7 @@ struct user* get_user_by_cid(struct hub_info* hub, const char* cid) } -struct user* get_user_by_nick(struct hub_info* hub, const char* nick) +struct user* uman_get_user_by_nick(struct hub_info* hub, const char* nick) { struct user* user = (struct user*) list_get_first(hub->users->list); /* iterate users - only on incoming INF msg */ while (user) @@ -210,7 +210,7 @@ struct user* get_user_by_nick(struct hub_info* hub, const char* nick) } -int send_user_list(struct user* target) +int uman_send_user_list(struct user* target) { int ret = 1; user_flag_set(target, flag_user_list); @@ -234,7 +234,7 @@ int send_user_list(struct user* target) } -void send_quit_message(struct user* leaving) +void uman_send_quit_message(struct user* leaving) { struct adc_message* command = adc_msg_construct(ADC_CMD_IQUI, 6); adc_msg_add_argument(command, (const char*) sid_to_string(leaving->id.sid)); diff --git a/src/usermanager.h b/src/usermanager.h index 0327435..705ec76 100644 --- a/src/usermanager.h +++ b/src/usermanager.h @@ -85,19 +85,19 @@ extern sid_t uman_get_free_sid(struct hub_info* hub); * * @return a user if found, or NULL if not found */ -extern struct user* get_user_by_sid(struct hub_info* hub, sid_t sid); +extern struct user* uman_get_user_by_sid(struct hub_info* hub, sid_t sid); /** * Lookup a user based on the client ID (CID). * @return a user if found, or NULL if not found */ -extern struct user* get_user_by_cid(struct hub_info* hub, const char* cid); +extern struct user* uman_get_user_by_cid(struct hub_info* hub, const char* cid); /** * Lookup a user based on the nick name. * @return a user if found, or NULL if not found */ -extern struct user* get_user_by_nick(struct hub_info* hub, const char* nick); +extern struct user* uman_get_user_by_nick(struct hub_info* hub, const char* nick); /** * Send the user list of connected clients to 'user'. @@ -105,13 +105,13 @@ extern struct user* get_user_by_nick(struct hub_info* hub, const char* nick); * * @return 1 if sending the user list succeeded, 0 otherwise. */ -extern int send_user_list(struct user* user); +extern int uman_send_user_list(struct user* user); /** * Send a quit message to all connected users when 'user' is * leaving the hub (for whatever reason). */ -extern void send_quit_message(struct user* user); +extern void uman_send_quit_message(struct user* user); #endif /* HAVE_UHUB_USER_MANAGER_H */