-
Notifications
You must be signed in to change notification settings - Fork 593
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move C++ SSL transport to Ice core #2048
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me!
#ifndef ICESSL_PLUGIN_H | ||
#define ICESSL_PLUGIN_H |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The header guard should probably updated to CERTIFICATE
class OpenSSLCertificateI : public IceSSL::OpenSSL::Certificate, | ||
public CertificateI, | ||
public IceSSL::CertificateExtendedInfo | ||
class OpenSSLCertificateI : public IceSSL::OpenSSL::Certificate, public CertificateI |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
class OpenSSLCertificateI : public IceSSL::OpenSSL::Certificate, public CertificateI | |
class OpenSSLCertificateI : public OpenSSL::Certificate, public CertificateI |
{ | ||
namespace RFC2253 | ||
typedef std::list<std::pair<std::string, std::string>> RDNSeq; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typedef std::list<std::pair<std::string, std::string>> RDNSeq; | |
using RDNSeq = std::list<std::pair<std::string, std::string>>; |
RDNSeq rdn; | ||
bool negate; | ||
}; | ||
typedef std::list<RDNEntry> RDNEntrySeq; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typedef std::list<RDNEntry> RDNEntrySeq; | |
using RDNEntrySeq = std::list<RDNEntry>; |
I would fix review-comments in a follow-up PR. |
No description provided.