Initial, untested mirror implementation and resolved some type confusion
around struct ip_and_mask pointers (no idea how it worked before). Added a header for readwrite.h used in mirror implementation.
This commit is contained in:
11
readwrite.h
Normal file
11
readwrite.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#ifndef __READWRITE_H
|
||||
|
||||
#define __READWRITE_H
|
||||
|
||||
int socket_connect(struct sockaddr* to);
|
||||
off64_t socket_nbd_read_hello(int fd);
|
||||
void socket_nbd_read(int fd, off64_t from, int len, int out_fd, void* out_buf);
|
||||
void socket_nbd_write(int fd, off64_t from, int len, int out_fd, void* out_buf);
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user