Guest User

Untitled

a guest
Oct 23rd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.36 KB | None | 0 0
  1. /*
  2.  *  prototipo.h
  3.  */
  4.  
  5. typedef int RD;
  6.  
  7. /*
  8.  *  Funciones remotas
  9.  */
  10.  
  11.  
  12. int rmtread( int s,  char *pathname, void *data, int qty, int binicio );
  13.  
  14. int rmtwrite( int s,  char *pathname, const void *data, int qty );
  15.  
  16. /*
  17.  *  Funciones de Stubs
  18.  */
  19.  
  20. int send_packet( int sockfd, const void *p, int qty );
  21.  
  22. int receive_packet( int sockfd, void *p, int lim );
Add Comment
Please, Sign In to add comment