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