view src/ipc/ipc-connection.h @ 19604:c996bc091c6b

master: Do not close stdout if going foreground This lets one to use /dev/stdout for logging. Mainly useful for testing purposes where we can generate log output to stdout and use tee to write it to a file for later examination.
author Aki Tuomi <aki.tuomi@dovecot.fi>
date Mon, 18 Jan 2016 15:50:23 +0200
parents a097ef0a9d6d
children
line wrap: on
line source

#ifndef IPC_CONNECTION_H
#define IPC_CONNECTION_H

#include "ipc-group.h"

struct ipc_connection_cmd {
	unsigned int tag;
	struct ipc_connection *conn;

	ipc_cmd_callback_t *callback;
	void *context;
};

struct ipc_connection {
	struct ipc_group *group;
	/* prev/next within group */
	struct ipc_connection *prev, *next;

	unsigned int id;
	pid_t pid;

	int fd;
	struct io *io;
	struct istream *input;
	struct ostream *output;

	unsigned int cmd_tag_counter;

	/* running commands */
	ARRAY(struct ipc_connection_cmd *) cmds;

	unsigned int version_received:1;
	unsigned int handshake_received:1;
};

struct ipc_connection *ipc_connection_create(int listen_fd, int fd);
void ipc_connection_destroy(struct ipc_connection **conn);

struct ipc_connection *
ipc_connection_lookup_id(struct ipc_group *group, unsigned int id);

void ipc_connection_cmd(struct ipc_connection *conn, const char *cmd,
			ipc_cmd_callback_t *callback, void *context);

#endif