FdNotes.cc
Go to the documentation of this file.
1/*
2 * Copyright (C) 1996-2023 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/Stream.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, "ERROR: Squid BUG: wrong fd_note ID: " << fdNoteId);
35 return FdNotes[fdnNone];
36}
37
#define DBG_IMPORTANT
Definition: Stream.h:38
#define debugs(SECTION, LEVEL, CONTENT)
Definition: Stream.h:194
@ fdnNone
Definition: FdNotes.h:20
@ fdnEnd
Definition: FdNotes.h:24
const char * FdNote(int fdNodeId)
converts FdNoteId into a string
Definition: FdNotes.cc:16

 

Introduction

Documentation

Support

Miscellaneous

Web Site Translations

Mirrors