naraku9333

Untitled

Apr 21st, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. void irc::ircregister()
  2. {
  3.     this->send("NICK " + this->Nick);
  4.     this->send("USER " + this->Ident + " " + this->Server + " bla :" + this->Realname);
  5. }
  6.  
  7. 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