]> git.ipfire.org Git - thirdparty/squid.git/blame_incremental - src/ipc/FdNotes.cc
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / ipc / FdNotes.cc
... / ...
CommitLineData
1/*
2 * Copyright (C) 1996-2018 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#include "squid.h"
12#include "Debug.h"
13#include "ipc/FdNotes.h"
14
15const char *
16Ipc::FdNote(int fdNoteId)
17{
18 static const char *FdNotes[Ipc::fdnEnd] = {
19 "None", // fdnNone
20 "HTTP Socket", // fdnHttpSocket
21 "HTTPS Socket", // fdnHttpsSocket
22 "FTP Socket", // fdnFtpSocket
23#if SQUID_SNMP
24 "Incoming SNMP Socket", // fdnInSnmpSocket
25 "Outgoing SNMP Socket", // fdnOutSnmpSocket
26#endif
27 "Incoming ICP Socket", // fdnInIcpSocket
28 "Incoming HTCP Socket" // fdnInHtcpSocket
29 };
30
31 if (fdnNone < fdNoteId && fdNoteId < fdnEnd)
32 return FdNotes[fdNoteId];
33
34 debugs(54, DBG_IMPORTANT, HERE << "salvaged bug: wrong fd_note ID: " << fdNoteId);
35 return FdNotes[fdnNone];
36}
37