blob: 7595f4565014899f51477cada0cae5ef16339205 [file] [log] [blame]
Dave Tapuskab8a824d2014-12-10 19:09:52 -05001/* Copyright (c) 2014, Google Inc.
2 *
3 * Permission to use, copy, modify, and/or distribute this software for any
4 * purpose with or without fee is hereby granted, provided that the above
5 * copyright notice and this permission notice appear in all copies.
6 *
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
10 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
13 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
14
15#ifndef OPENSSL_HEADER_TOOL_TRANSPORT_COMMON_H
16#define OPENSSL_HEADER_TOOL_TRANSPORT_COMMON_H
17
18#include <openssl/ssl.h>
19#include <string.h>
20
Brian Smith33970e62015-01-27 22:32:08 -080021// InitSocketLibrary calls the Windows socket init functions, if needed.
22bool InitSocketLibrary();
Dave Tapuskab8a824d2014-12-10 19:09:52 -050023
24// Connect sets |*out_sock| to be a socket connected to the destination given
25// in |hostname_and_port|, which should be of the form "www.example.com:123".
26// It returns true on success and false otherwise.
27bool Connect(int *out_sock, const std::string &hostname_and_port);
28
29// Accept sets |*out_sock| to be a socket connected to the port given
30// in |port|, which should be of the form "123".
31// It returns true on success and false otherwise.
32bool Accept(int *out_sock, const std::string &port);
33
David Benjamin225e5ad2016-07-16 14:51:58 +020034bool VersionFromString(uint16_t *out_version, const std::string &version);
35
Dave Tapuskab8a824d2014-12-10 19:09:52 -050036void PrintConnectionInfo(const SSL *ssl);
37
38bool SocketSetNonBlocking(int sock, bool is_non_blocking);
39
40int PrintErrorCallback(const char *str, size_t len, void *ctx);
41
42bool TransferData(SSL *ssl, int sock);
43
Adam Langley403c52a2016-07-07 14:52:02 -070044// DoSMTPStartTLS performs the SMTP STARTTLS mini-protocol over |sock|. It
45// returns true on success and false otherwise.
46bool DoSMTPStartTLS(int sock);
Dave Tapuskab8a824d2014-12-10 19:09:52 -050047
Dave Tapuskab8a824d2014-12-10 19:09:52 -050048#endif /* !OPENSSL_HEADER_TOOL_TRANSPORT_COMMON_H */