]> git.ipfire.org Git - thirdparty/squid.git/blame - src/ipc/mem/Page.cc
Boilerplate: update copyright blurbs on src/
[thirdparty/squid.git] / src / ipc / mem / Page.cc
CommitLineData
3e0ddf16 1/*
bbc27441 2 * Copyright (C) 1996-2014 The Squid Software Foundation and contributors
3e0ddf16 3 *
bbc27441
AJ
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.
3e0ddf16
AR
7 */
8
bbc27441
AJ
9/* DEBUG: section 54 Interprocess Communication */
10
f7f3304a 11#include "squid.h"
3e0ddf16
AR
12#include "ipc/mem/Page.h"
13
56f8aa50 14#include <iostream>
56f8aa50 15
56f8aa50
DK
16std::ostream &Ipc::Mem::operator <<(std::ostream &os, const PageId &page)
17{
18 return os << "sh_page" << page.pool << '.' << page.number;
19}