Files
flexnbd-c/src/client.h

17 lines
228 B
C
Raw Normal View History

#ifndef CLIENT_H
#define CLIENT_H
struct client_params {
int socket;
int fileno;
char* mapped;
struct server* serve; /* FIXME: remove above duplication */
};
void* client_serve(void* client_uncast);
#endif