123456789101112131415161718192021222324 |
- #ifndef MC_VFS_MCFSUTIL_H
- #define MC_VFS_MCFSUTIL_H
- enum {
- RPC_END,
- RPC_INT,
- RPC_STRING,
- RPC_BLOCK,
- RPC_LIMITED_STRING
- };
- int rpc_get (int sock, ...);
- int rpc_send (int sock, ...);
- int socket_read_block (int sock, char *dest, int len);
- int socket_write_block (int sock, const char *buffer, int len);
- #endif
|