Show imaps_test.cc syntax highlighted
/*
* Copyright (C) 2001-2004 Peter J Jones (pjones@pmade.org)
* All Rights Reserved
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name of the Author nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR
* OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/*
* This example shows you how to make a TLS request and examin the the
* server's certificate.
*/
// Netxx Includes
#include <netxx/tls/netxx.h>
// Standard Includes
#include <iostream>
#include <exception>
using std::string;
using std::cerr;
using std::cin;
using std::cout;
using std::endl;
using std::exception;
using std::getline;
int main (int argc, char *argv[]) {
if (argc != 2) {
cout << "Usage: " << argv[0] << " URI\n";
return 0;
}
try {
Netxx::TLS::Context context;
Netxx::Address addr(argv[1], 993);
Netxx::TLS::Stream client(context, addr, Netxx::Timeout(30));
Netxx::Netbuf<1024> sbuf(client);
std::iostream stream(&sbuf);
std::string string_buffer;
const Netxx::TLS::Certificate &peer_cert = client.get_peer_cert();
const Netxx::TLS::Certificate &issuer_cert = client.get_issuer_cert();
if (peer_cert) {
cout << "Peer Certificate:\n";
cout << " C: " << peer_cert.get_country() << "\n";
cout << " ST: " << peer_cert.get_region() << "\n";
cout << " O: " << peer_cert.get_organization() << "\n";
cout << " OU: " << peer_cert.get_organization_unit() << "\n";
cout << " CN: " << peer_cert.get_fqdn() << "\n\n";
} else {
cout << "Missing Peer Certificate\n\n";
}
if (issuer_cert) {
cout << "Issuer Certificate:\n";
cout << " C: " << issuer_cert.get_country() << "\n";
cout << " ST: " << issuer_cert.get_region() << "\n";
cout << " O: " << issuer_cert.get_organization() << "\n";
cout << " OU: " << issuer_cert.get_organization_unit() << "\n";
cout << " CN: " << issuer_cert.get_fqdn() << "\n\n";
} else {
cout << "Missing Issuer Certificate\n\n";
}
int cmd = 1;
string prefix("CMD");
while (getline(cin, string_buffer)) {
stream << prefix << cmd << " " << string_buffer << "\r\n";
cout << "SENDING: " << prefix << cmd << " " << string_buffer << "\r\n";
stream.flush();
do {
getline(stream, string_buffer);
cout << string_buffer << endl;
} while (string_buffer.substr(0,3) != prefix);
cmd++;
}
} catch (std::exception &e) {
cerr << e.what() << endl;
return 1;
}
return 0;
}
See more files for this project here