blob: dc608bf9600e401d540f4be461f1d6b42f797c73 [file] [log] [blame]
/*
*
* 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.
*
*/
#include "proton/transport.hpp"
#include "proton/condition.hpp"
#include "proton/connection.hpp"
#include "proton/ssl.hpp"
#include "proton/sasl.hpp"
#include "msg.hpp"
#include "proton/transport.h"
namespace proton {
connection transport::connection() const {
return pn_transport_connection(pn_object());
}
class ssl transport::ssl() const {
return proton::ssl(pn_ssl(pn_object()));
}
class sasl transport::sasl() const {
return proton::sasl(pn_sasl(pn_object()));
}
condition transport::condition() const {
return proton::condition(pn_transport_condition(pn_object()));
}
void transport::unbind() {
if (pn_transport_unbind(pn_object()))
throw error(MSG("transport::unbind failed " << pn_error_text(pn_transport_error(pn_object()))));
}
void transport::bind(class connection &conn) {
if (pn_transport_bind(pn_object(), conn.pn_object()))
throw error(MSG("transport::bind failed " << pn_error_text(pn_transport_error(pn_object()))));
}
uint32_t transport::max_frame_size() const {
return pn_transport_get_max_frame(pn_object());
}
uint32_t transport::remote_max_frame_size() const {
return pn_transport_get_remote_max_frame(pn_object());
}
uint16_t transport::max_channels() const {
return pn_transport_get_channel_max(pn_object());
}
uint16_t transport::remote_max_channels() const {
return pn_transport_remote_channel_max(pn_object());
}
uint32_t transport::idle_timeout() const {
return pn_transport_get_idle_timeout(pn_object());
}
uint32_t transport::remote_idle_timeout() const {
return pn_transport_get_remote_idle_timeout(pn_object());
}
}