Advertisement
captainIBM

network.h

Jan 17th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #ifndef NETWORK_H_INCLUDED
  2. #define NETWORK_H_INCLUDED
  3.  
  4.  
  5.  
  6. #endif // NETWORK_H_INCLUDED
  7. typedef struct Question{
  8. int numberQ;
  9. char email[255];
  10. int *id_question;
  11. } Question;
  12.  
  13. int init_connection();
  14. char receiveData(int csock);
  15. int sendData(int csock, Question);
  16. void *connectionHandler(void *);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement