#include #include #include "handlers.h" void *read_req_resp(void *args) { if ((*(nbd_nbtpd_args *)args).path[0] == 0) { nbd_nbtpd_resp_error(args); return (void *)NULL; } return (void *)NULL; } void *write_req_resp(void *args) { if ((*(nbd_nbtpd_args *)args).path[0] == 0) { nbd_nbtpd_resp_error(args); return (void *)NULL; } return (void *)NULL; } void *nbd_nbtpd_resp_error(void *args) { if ((*(nbd_nbtpd_args *)args).path[0] == 0) { return (void *)NULL; } return (void *)NULL; }