program-client-private.h revision 204afc1f4f37a4f1cb53ff44b993a661cc45bf5d
/* Copyright (c) 2002-2016 Dovecot authors, see the included COPYING file
*/
#ifndef PROGRAM_CLIENT_PRIVATE_H
#define PROGRAM_CLIENT_PRIVATE_H
#include "program-client.h"
enum program_client_error {
};
struct program_client_extra_fd {
struct program_client *pclient;
void *context;
};
struct program_client {
struct program_client_settings set;
char *path;
const char **args;
struct timeval start_time;
char *temp_prefix;
void *context;
bool other_error;
enum program_client_error error;
int exit_code;
bool debug:1;
bool disconnected:1;
bool output_seekable:1;
};
#endif