ipc-connection.h revision 4ee00532a265bdfb38539d811fcd12d51210ac35
#ifndef IPC_CONNECTION_H
#define IPC_CONNECTION_H
#include "ipc-group.h"
struct ipc_connection_cmd {
unsigned int tag;
struct ipc_connection *conn;
void *context;
};
struct ipc_connection {
unsigned int id;
int fd;
unsigned int cmd_tag_counter;
/* running commands */
unsigned int version_received:1;
unsigned int handshake_received:1;
};
struct ipc_connection *
#endif