// // Copyright (c) ZeroC, Inc. All rights reserved. // // // Ice version 3.7.11 // // // // Generated from file `SSLInfo.ice' // // Warning: do not edit this file. // // // export namespace Glacier2 { /** * Information taken from an SSL connection used for permissions * verification. * @see PermissionsVerifier */ class SSLInfo { constructor(remoteHost?:string, remotePort?:number, localHost?:string, localPort?:number, cipher?:string, certs?:Ice.StringSeq); clone():SSLInfo; equals(rhs:any):boolean; hashCode():number; remoteHost:string; remotePort:number; localHost:string; localPort:number; cipher:string; certs:Ice.StringSeq; static write(outs:Ice.OutputStream, value:SSLInfo):void; static read(ins:Ice.InputStream):SSLInfo; } }