1
2/*
3 * IXSocketFactory.h
4 * Author: Benjamin Sergeant
5 * Copyright (c) 2018 Machine Zone, Inc. All rights reserved.
6 */
7
8#pragma once
9
10#include "IXSocketTLSOptions.h"
11#include <memory>
12#include <string>
13
14namespace ix
15{
16 class Socket;
17 std::unique_ptr<Socket> createSocket(bool tls,
18 int fd,
19 std::string& errorMsg,
20 const SocketTLSOptions& tlsOptions);
21} // namespace ix
22