]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/AtStep.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / acl / AtStep.cc
CommitLineData
bbc27441 1/*
bde978a6 2 * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
bbc27441
AJ
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
5d65362c 9#include "squid.h"
8693472e
CT
10
11#if USE_OPENSSL
12
8693472e
CT
13#include "acl/AtStep.h"
14#include "acl/AtStepData.h"
40f1e76d 15#include "acl/Checklist.h"
5d65362c
CT
16#include "client_side.h"
17#include "ssl/ServerBump.h"
5d65362c
CT
18
19int
20ACLAtStepStrategy::match (ACLData<Ssl::BumpStep> * &data, ACLFilledChecklist *checklist, ACLFlags &)
21{
e4f14091 22 Ssl::ServerBump *bump = NULL;
d0ef5e87
CT
23 if (checklist->conn() != NULL && (bump = checklist->conn()->serverBump()))
24 return data->match(bump->step);
25 else
26 return data->match(Ssl::bumpStep1);
5d65362c
CT
27 return 0;
28}
29
30ACLAtStepStrategy *
31ACLAtStepStrategy::Instance()
32{
33 return &Instance_;
34}
35
36ACLAtStepStrategy ACLAtStepStrategy::Instance_;
8693472e
CT
37
38#endif /* USE_OPENSSL */
f53969cc 39