]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/UrlPort.cc
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / acl / UrlPort.cc
CommitLineData
48071869 1/*
5b74111a 2 * Copyright (C) 1996-2018 The Squid Software Foundation and contributors
48071869 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.
48071869 7 */
8
582c2af2 9#include "squid.h"
4eac3407 10#include "acl/FilledChecklist.h"
602d9612 11#include "acl/UrlPort.h"
a2ac85d9 12#include "HttpRequest.h"
48071869 13
48071869 14int
4eac3407 15ACLUrlPortStrategy::match(ACLData<MatchType> * &data, ACLFilledChecklist *checklist)
48071869 16{
5c51bffb 17 return data->match(checklist->request->url.port());
48071869 18}
19