]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ipc/FdNotes.cc
Merged from trunk
[thirdparty/squid.git] / src / ipc / FdNotes.cc
1 /*
2 * Copyright (C) 1996-2014 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
15 const char *
16 Ipc::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