Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void irc::ircregister()
- {
- this->send("NICK " + this->Nick);
- this->send("USER " + this->Ident + " " + this->Server + " bla :" + this->Realname);
- }
- void irc::send(std::string Command) { this->Socket.send(std::string(Command + "\r\n").c_str(), Command.length() + 1); }
Advertisement
Add Comment
Please, Sign In to add comment