/* * Copyright (C) 1996-2017 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. */ #include "squid.h" #include "acl/Checklist.h" #include "acl/IntRange.h" #include "acl/LocalPort.h" int ACLLocalPortStrategy::match (ACLData * &data, ACLFilledChecklist *checklist, ACLFlags &) { return data->match (checklist->my_addr.port()); } ACLLocalPortStrategy * ACLLocalPortStrategy::Instance() { return &Instance_; } ACLLocalPortStrategy ACLLocalPortStrategy::Instance_;