Squid Web Cache master
Loading...
Searching...
No Matches
FdNotes.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 1996-2025 The Squid Software Foundation and contributors
3 *
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.
7 */
8
9/* DEBUG: section 54 Interprocess Communication */
10
11#ifndef SQUID_SRC_IPC_FDNOTES_H
12#define SQUID_SRC_IPC_FDNOTES_H
13
14namespace Ipc
15{
16
18
21#if SQUID_SNMP
23#endif
26
27const char *FdNote(int fdNodeId);
28
29} // namespace Ipc;
30
31#endif /* SQUID_SRC_IPC_FDNOTES_H */
32
FdNoteId
We cannot send char* FD notes to other processes. Pass int IDs and convert.
Definition FdNotes.h:20
@ fdnNone
Definition FdNotes.h:20
@ fdnHttpSocket
Definition FdNotes.h:20
@ fdnInSnmpSocket
Definition FdNotes.h:22
@ fdnEnd
Definition FdNotes.h:24
@ fdnInIcpSocket
Definition FdNotes.h:24
@ fdnInHtcpSocket
Definition FdNotes.h:24
@ fdnOutSnmpSocket
Definition FdNotes.h:22
@ fdnFtpSocket
Definition FdNotes.h:20
@ fdnHttpsSocket
Definition FdNotes.h:20
const char * FdNote(int fdNodeId)
converts FdNoteId into a string
Definition FdNotes.cc:16