1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
// **********************************************************************
//
// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#include <Ice/TcpConnector.h>
#include <Ice/TcpTransceiver.h>
#include <Ice/Instance.h>
#include <Ice/TraceLevels.h>
#include <Ice/LoggerUtil.h>
#include <Ice/Network.h>
#include <Ice/Exception.h>
using namespace std;
using namespace Ice;
using namespace IceInternal;
TransceiverPtr
IceInternal::TcpConnector::connect(int timeout)
{
if(_traceLevels->network >= 2)
{
Trace out(_logger, _traceLevels->networkCat);
out << "trying to establish tcp connection to " << toString();
}
SOCKET fd = createSocket(false);
setBlock(fd, false);
setTcpBufSize(fd, _instance->initializationData().properties, _logger);
doConnect(fd, _addr, timeout);
if(_traceLevels->network >= 1)
{
Trace out(_logger, _traceLevels->networkCat);
out << "tcp connection established\n" << fdToString(fd);
}
return new TcpTransceiver(_instance, fd);
}
string
IceInternal::TcpConnector::toString() const
{
return addrToString(_addr);
}
IceInternal::TcpConnector::TcpConnector(const InstancePtr& instance, const struct sockaddr_in& addr) :
_instance(instance),
_traceLevels(instance->traceLevels()),
_logger(instance->initializationData().logger),
_addr(addr)
{
}
IceInternal::TcpConnector::~TcpConnector()
{
}
|