]> asedeno.scripts.mit.edu Git - linux.git/blob - tools/testing/vsock/control.h
Merge tag 'for-linus-4.15-rc5-tag' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux.git] / tools / testing / vsock / control.h
1 #ifndef CONTROL_H
2 #define CONTROL_H
3
4 #include <stdbool.h>
5
6 void control_init(const char *control_host, const char *control_port,
7                   bool server);
8 void control_cleanup(void);
9 void control_writeln(const char *str);
10 char *control_readln(void);
11 void control_expectln(const char *str);
12
13 #endif /* CONTROL_H */