/* * Copyright (c) 2012 Tobias Markmann * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #include #include #include #include #include #include #include namespace Swift { SecureTransportContext::SecureTransportContext() : state_(Start) { assert(false); } SecureTransportContext::~SecureTransportContext() { assert(false); } void SecureTransportContext::ensureLibraryInitialized() { assert(false); } void SecureTransportContext::connect() { assert(false); } void SecureTransportContext::doConnect() { assert(false); } void SecureTransportContext::handleDataFromNetwork(const SafeByteArray& data) { assert(false); } void SecureTransportContext::handleDataFromApplication(const SafeByteArray& data) { assert(false); } bool SecureTransportContext::setClientCertificate(CertificateWithKey::ref certificate) { assert(false); } std::vector SecureTransportContext::getPeerCertificateChain() const { assert(false); } boost::shared_ptr SecureTransportContext::getPeerCertificateVerificationError() const { assert(false); } ByteArray SecureTransportContext::getFinishMessage() const { assert(false); } CertificateVerificationError::Type SecureTransportContext::getVerificationErrorTypeForResult(int result) { assert(false); } }