blob: 8b05b0a89c00f27e6011bbd73d54ec0b67edf4d5 [file] [log] [blame]
/** @file
SSLNextProtocolSet
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#pragma once
#include "tscore/List.h"
#include "I_Net.h"
#include "records/I_RecHttp.h"
class Continuation;
class SSLNextProtocolSet
{
public:
SSLNextProtocolSet();
~SSLNextProtocolSet();
bool registerEndpoint(const char *, Continuation *);
Continuation *findEndpoint(const unsigned char *, unsigned) const;
bool create_npn_advertisement(const SessionProtocolSet &enabled, unsigned char **npn, size_t *len) const;
struct NextProtocolEndpoint {
// NOTE: the protocol and endpoint are NOT copied. The caller is
// responsible for ensuring their lifetime.
NextProtocolEndpoint(const char *protocol, Continuation *endpoint);
~NextProtocolEndpoint();
const char *protocol;
Continuation *endpoint;
LINK(NextProtocolEndpoint, link);
typedef DLL<NextProtocolEndpoint> list_type;
};
// noncopyable
SSLNextProtocolSet(const SSLNextProtocolSet &) = delete; // disabled
SSLNextProtocolSet &operator=(const SSLNextProtocolSet &) = delete; // disabled
private:
NextProtocolEndpoint::list_type endpoints;
};