(irc) Setting own/other nicks
This commit is contained in:
parent
8ac73ca50e
commit
340aa405f3
|
@ -182,6 +182,16 @@ IrcProtocol::Process(BMessage* msg)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case IM_SET_OWN_NICKNAME:
|
||||||
|
{
|
||||||
|
BString user_name;
|
||||||
|
if (msg->FindString("user_name", &user_name) == B_OK) {
|
||||||
|
BString cmd("NICK ");
|
||||||
|
cmd << user_name << "\n";
|
||||||
|
_SendIrc(cmd);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
std::cerr << "Unhandled message for IRC:\n";
|
std::cerr << "Unhandled message for IRC:\n";
|
||||||
msg->PrintToStream();
|
msg->PrintToStream();
|
||||||
|
@ -427,6 +437,20 @@ IrcProtocol::_ProcessCommand(BString command, BString sender,
|
||||||
invite.AddString("user_id", _SenderIdent(sender));
|
invite.AddString("user_id", _SenderIdent(sender));
|
||||||
_SendMsg(&invite);
|
_SendMsg(&invite);
|
||||||
}
|
}
|
||||||
|
else if (command == "NICK")
|
||||||
|
{
|
||||||
|
BMessage nick(IM_MESSAGE);
|
||||||
|
nick.AddString("user_name", params.Last());
|
||||||
|
if (_SenderIdent(sender) == fIdent) {
|
||||||
|
nick.AddInt32("im_what", IM_OWN_NICKNAME_SET);
|
||||||
|
fNick = params.Last();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
nick.AddInt32("im_what", IM_USER_NICKNAME_SET);
|
||||||
|
nick.AddString("user_id", _SenderIdent(sender));
|
||||||
|
}
|
||||||
|
_SendMsg(&nick);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -610,7 +634,7 @@ IrcProtocol::_AccountTemplate()
|
||||||
|
|
||||||
BMessage ssl;
|
BMessage ssl;
|
||||||
ssl.AddString("name", "ssl");
|
ssl.AddString("name", "ssl");
|
||||||
ssl.AddString("description", B_TRANSLATE("SSL:"));
|
ssl.AddString("description", B_TRANSLATE("SSL"));
|
||||||
ssl.AddBool("default", true);
|
ssl.AddBool("default", true);
|
||||||
ssl.AddInt32("type", B_BOOL_TYPE);
|
ssl.AddInt32("type", B_BOOL_TYPE);
|
||||||
settings.AddMessage("setting", &ssl);
|
settings.AddMessage("setting", &ssl);
|
||||||
|
|
Ŝarĝante…
Reference in New Issue