/* Copyright (c) 2011-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "array.h"
#include "ipc-connection.h"
#include "ipc-group.h"
struct ipc_group_cmd {
void *context;
int refcount;
char *first_error;
};
{
return group;
}
{
unsigned int i, count;
for (i = 0; i < count; i++) {
break;
}
}
}
{
return *groupp;
}
return NULL;
}
{
return *groupp;
}
return NULL;
}
{
return -1;
return 0;
}
{
switch (status) {
case IPC_CMD_STATUS_REPLY:
break;
case IPC_CMD_STATUS_ERROR:
/* fall through */
case IPC_CMD_STATUS_OK:
break;
} else {
}
break;
}
}
{
return FALSE;
}
}
return TRUE;
}
void ipc_groups_init(void)
{
}
void ipc_groups_deinit(void)
{
while (array_count(&ipc_groups) > 0) {
}
}
}