mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 15:12:11 +02:00
added server_change_nick() function for servers.[ch]. Lots of fixes for
support to multiple identical nicks. Should work now properly :) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1351 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
f167516d23
commit
484f62f757
6 changed files with 86 additions and 25 deletions
|
|
@ -21,8 +21,9 @@ void nicklist_remove(CHANNEL_REC *channel, NICK_REC *nick);
|
|||
/* Change nick */
|
||||
void nicklist_rename(SERVER_REC *server, const char *old_nick,
|
||||
const char *new_nick);
|
||||
void nicklist_rename_unique(SERVER_REC *server, void *old_nick_id,
|
||||
const char *old_nick, const char *new_nick);
|
||||
void nicklist_rename_unique(SERVER_REC *server,
|
||||
void *old_nick_id, const char *old_nick,
|
||||
void *new_nick_id, const char *new_nick);
|
||||
|
||||
/* Find nick */
|
||||
NICK_REC *nicklist_find(CHANNEL_REC *channel, const char *nick);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue