EVOLUTION-MANAGER
Edit File: ConnectionInfo.ice
// ********************************************************************** // // Copyright (c) 2003-2013 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #pragma once [["cpp:header-ext:h"]] #include <Ice/Connection.ice> module IceSSL { /** * * Provides access to the connection details of an SSL connection * **/ local class ConnectionInfo extends Ice::IPConnectionInfo { /** The negotiated cipher suite. */ string cipher; /** The certificate chain. */ Ice::StringSeq certs; }; };