/* * Copyright (C) 1996-2023 The Squid Software Foundation and contributors * * Squid software is distributed under GPLv2+ license and includes * contributions from numerous individuals and organizations. * Please see the COPYING and CONTRIBUTORS files for details. */ /* DEBUG: section 54 Interprocess Communication */ #include "squid.h" #include "Debug.h" #include "ipc/FdNotes.h" const char * Ipc::FdNote(int fdNoteId) { static const char *FdNotes[Ipc::fdnEnd] = { "None", // fdnNone "HTTP Socket", // fdnHttpSocket "HTTPS Socket", // fdnHttpsSocket "FTP Socket", // fdnFtpSocket #if SQUID_SNMP "Incoming SNMP Socket", // fdnInSnmpSocket "Outgoing SNMP Socket", // fdnOutSnmpSocket #endif "Incoming ICP Socket", // fdnInIcpSocket "Incoming HTCP Socket" // fdnInHtcpSocket }; if (fdnNone < fdNoteId && fdNoteId < fdnEnd) return FdNotes[fdNoteId]; debugs(54, DBG_IMPORTANT, HERE << "salvaged bug: wrong fd_note ID: " << fdNoteId); return FdNotes[fdnNone]; }