about summary refs log tree commit diff stats
path: root/src/handlers.c
blob: 4162926cfa526879e83eed44b88e1ef1b3d592fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <sys/socket.h>
#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;
}