]> git.ipfire.org Git - thirdparty/squid.git/blame - src/SquidIpc.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / SquidIpc.h
CommitLineData
96097880 1/*
f70aedc4 2 * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
96097880 3 *
bbc27441
AJ
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
96097880
FC
7 */
8
bbc27441
AJ
9/* DEBUG: section 54 Interprocess Communication */
10
11#ifndef SQUID_SQUIDIPC_H_
12#define SQUID_SQUIDIPC_H_
13
13501b47
A
14namespace Ip
15{
16class Address;
96097880 17}
8a648e8d 18pid_t ipcCreate(int type,
16c14905
FC
19 const char *prog,
20 const char *const args[],
21 const char *name,
22 Ip::Address &local_addr,
23 int *rfd,
24 int *wfd,
25 void **hIpc);
96097880 26
96097880 27#endif /* SQUID_SQUIDIPC_H_ */
f53969cc 28