Beispiel #1
0
void registration1(int sock, string nickName, string pass){
    string response = "reg:" + conts.pushContact(sock, nickName, pass);
    if (send(sock, &(response[0]), response.length(), 0))
        perror("send");
    cout << &(response[0]) << endl;
}