HttpClientImp.cpp 669 Bytes
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
xiongziliang committed
3 4 5
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
xiongziliang committed
6 7 8
 * Use of this source code is governed by MIT license that can be found in the
 * LICENSE file in the root of the source tree. All contributing project authors
 * may be found in the AUTHORS file in the root of the source tree.
xiongziliang committed
9 10
 */

xiongziliang committed
11
#include "Http/HttpClientImp.h"
xiongziliang committed
12

xiongziliang committed
13
namespace mediakit {
xiongziliang committed
14

xiongziliang committed
15
void HttpClientImp::onConnect(const SockException &ex) {
16 17 18 19 20
    if(!_isHttps){
        HttpClient::onConnect(ex);
    } else {
        TcpClientWithSSL<HttpClient>::onConnect(ex);
    }
xiongziliang committed
21 22

}
23

xiongziliang committed
24
} /* namespace mediakit */