Guest User

Untitled

a guest
Feb 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. /*Send data function */
  2. void send_data(SOCKET current_client, string prefix, string text){
  3. char sendData[100];
  4. prefix.append(text);
  5. strcpy(sendData,prefix.c_str());
  6. send(current_client,sendData,sizeof(sendData),0);
  7. }
Add Comment
Please, Sign In to add comment