Move protocols/types.h content to remote.h
[remote/remote-mci.git] / remote.h
blob651e13b0aa24af487a99f57a3b1dae7e3f256792
1 #ifndef REMOTE_REMOTE_H
2 #define REMOTE_REMOTE_H
4 #ifdef HAVE_CONFIG_H
5 #include "config.h"
6 #endif
8 #include <dirent.h>
9 #include <errno.h>
10 #include <fcntl.h>
11 #include <signal.h>
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <sys/ioctl.h>
15 #include <sys/poll.h>
16 #include <sys/select.h>
17 #include <sys/signal.h>
18 #include <sys/socket.h>
19 #include <sys/stat.h>
20 #include <sys/time.h>
21 #include <sys/types.h>
22 #include <sys/wait.h>
23 #include <termios.h>
24 #include <unistd.h>
25 #include <netinet/in.h>
26 #include <netinet/tcp.h>
27 #include <netdb.h>
28 #include <arpa/inet.h>
30 #include <exception>
31 #include <string>
32 #include <iostream>
33 #include <fstream>
34 #include <sstream>
35 #include <list>
36 #include <map>
38 #include "libutil/File.h"
39 #include "libutil/Log.h"
40 #include "libutil/Config.h"
41 #include "libutil/error.h"
43 using namespace remote::util;
45 namespace remote {
46 typedef uint32_t dbkey_t;
47 typedef uint8_t result_t;
48 typedef uint8_t status_t;
51 #endif