quickfix_ruby_ud 2.0.7-aarch64-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/ext/quickfix/Acceptor.cpp +257 -0
- data/ext/quickfix/Acceptor.h +127 -0
- data/ext/quickfix/Allocator.h +9 -0
- data/ext/quickfix/Application.h +137 -0
- data/ext/quickfix/DOMDocument.h +70 -0
- data/ext/quickfix/DataDictionary.cpp +679 -0
- data/ext/quickfix/DataDictionary.h +607 -0
- data/ext/quickfix/DataDictionaryProvider.cpp +66 -0
- data/ext/quickfix/DataDictionaryProvider.h +67 -0
- data/ext/quickfix/DatabaseConnectionID.h +98 -0
- data/ext/quickfix/DatabaseConnectionPool.h +84 -0
- data/ext/quickfix/Dictionary.cpp +157 -0
- data/ext/quickfix/Dictionary.h +89 -0
- data/ext/quickfix/Event.h +89 -0
- data/ext/quickfix/Except.h +39 -0
- data/ext/quickfix/Exceptions.h +257 -0
- data/ext/quickfix/Field.h +654 -0
- data/ext/quickfix/FieldConvertors.cpp +86 -0
- data/ext/quickfix/FieldConvertors.h +800 -0
- data/ext/quickfix/FieldMap.cpp +254 -0
- data/ext/quickfix/FieldMap.h +327 -0
- data/ext/quickfix/FieldNumbers.h +44 -0
- data/ext/quickfix/FieldTypes.cpp +62 -0
- data/ext/quickfix/FieldTypes.h +817 -0
- data/ext/quickfix/Fields.h +30 -0
- data/ext/quickfix/FileLog.cpp +176 -0
- data/ext/quickfix/FileLog.h +110 -0
- data/ext/quickfix/FileStore.cpp +369 -0
- data/ext/quickfix/FileStore.h +131 -0
- data/ext/quickfix/FixCommonFields.h +13 -0
- data/ext/quickfix/FixFieldNumbers.h +6132 -0
- data/ext/quickfix/FixFields.h +6133 -0
- data/ext/quickfix/FixValues.h +5790 -0
- data/ext/quickfix/Group.cpp +44 -0
- data/ext/quickfix/Group.h +78 -0
- data/ext/quickfix/HostDetailsProvider.cpp +79 -0
- data/ext/quickfix/HostDetailsProvider.h +44 -0
- data/ext/quickfix/HtmlBuilder.h +178 -0
- data/ext/quickfix/HttpConnection.cpp +914 -0
- data/ext/quickfix/HttpConnection.h +74 -0
- data/ext/quickfix/HttpMessage.cpp +229 -0
- data/ext/quickfix/HttpMessage.h +112 -0
- data/ext/quickfix/HttpParser.cpp +49 -0
- data/ext/quickfix/HttpParser.h +49 -0
- data/ext/quickfix/HttpServer.cpp +152 -0
- data/ext/quickfix/HttpServer.h +76 -0
- data/ext/quickfix/Initiator.cpp +310 -0
- data/ext/quickfix/Initiator.h +151 -0
- data/ext/quickfix/Log.cpp +71 -0
- data/ext/quickfix/Log.h +254 -0
- data/ext/quickfix/Message.cpp +617 -0
- data/ext/quickfix/Message.h +419 -0
- data/ext/quickfix/MessageCracker.h +171 -0
- data/ext/quickfix/MessageSorters.cpp +101 -0
- data/ext/quickfix/MessageSorters.h +185 -0
- data/ext/quickfix/MessageStore.cpp +182 -0
- data/ext/quickfix/MessageStore.h +164 -0
- data/ext/quickfix/Mutex.h +120 -0
- data/ext/quickfix/MySQLConnection.h +187 -0
- data/ext/quickfix/MySQLLog.cpp +262 -0
- data/ext/quickfix/MySQLLog.h +158 -0
- data/ext/quickfix/MySQLStore.cpp +323 -0
- data/ext/quickfix/MySQLStore.h +161 -0
- data/ext/quickfix/MySQLStubs.h +203 -0
- data/ext/quickfix/NullStore.cpp +40 -0
- data/ext/quickfix/NullStore.h +89 -0
- data/ext/quickfix/OdbcConnection.h +241 -0
- data/ext/quickfix/OdbcLog.cpp +230 -0
- data/ext/quickfix/OdbcLog.h +109 -0
- data/ext/quickfix/OdbcStore.cpp +313 -0
- data/ext/quickfix/OdbcStore.h +124 -0
- data/ext/quickfix/PUGIXML_DOMDocument.cpp +112 -0
- data/ext/quickfix/PUGIXML_DOMDocument.h +81 -0
- data/ext/quickfix/Parser.cpp +111 -0
- data/ext/quickfix/Parser.h +50 -0
- data/ext/quickfix/PostgreSQLConnection.h +163 -0
- data/ext/quickfix/PostgreSQLLog.cpp +263 -0
- data/ext/quickfix/PostgreSQLLog.h +157 -0
- data/ext/quickfix/PostgreSQLStore.cpp +327 -0
- data/ext/quickfix/PostgreSQLStore.h +160 -0
- data/ext/quickfix/PostgreSQLStubs.h +203 -0
- data/ext/quickfix/Queue.h +66 -0
- data/ext/quickfix/QuickfixRuby.cpp +131900 -0
- data/ext/quickfix/QuickfixRuby.h +56 -0
- data/ext/quickfix/Responder.h +41 -0
- data/ext/quickfix/SSLSocketAcceptor.cpp +409 -0
- data/ext/quickfix/SSLSocketAcceptor.h +186 -0
- data/ext/quickfix/SSLSocketConnection.cpp +434 -0
- data/ext/quickfix/SSLSocketConnection.h +221 -0
- data/ext/quickfix/SSLSocketInitiator.cpp +558 -0
- data/ext/quickfix/SSLSocketInitiator.h +203 -0
- data/ext/quickfix/SSLStubs.h +129 -0
- data/ext/quickfix/Session.cpp +1437 -0
- data/ext/quickfix/Session.h +343 -0
- data/ext/quickfix/SessionFactory.cpp +314 -0
- data/ext/quickfix/SessionFactory.h +84 -0
- data/ext/quickfix/SessionID.h +136 -0
- data/ext/quickfix/SessionSettings.cpp +165 -0
- data/ext/quickfix/SessionSettings.h +283 -0
- data/ext/quickfix/SessionState.h +260 -0
- data/ext/quickfix/Settings.cpp +160 -0
- data/ext/quickfix/Settings.h +56 -0
- data/ext/quickfix/SharedArray.h +274 -0
- data/ext/quickfix/SocketAcceptor.cpp +216 -0
- data/ext/quickfix/SocketAcceptor.h +77 -0
- data/ext/quickfix/SocketConnection.cpp +256 -0
- data/ext/quickfix/SocketConnection.h +102 -0
- data/ext/quickfix/SocketConnector.cpp +112 -0
- data/ext/quickfix/SocketConnector.h +76 -0
- data/ext/quickfix/SocketInitiator.cpp +241 -0
- data/ext/quickfix/SocketInitiator.h +76 -0
- data/ext/quickfix/SocketMonitor.h +26 -0
- data/ext/quickfix/SocketMonitor_UNIX.cpp +238 -0
- data/ext/quickfix/SocketMonitor_UNIX.h +101 -0
- data/ext/quickfix/SocketMonitor_WIN32.cpp +248 -0
- data/ext/quickfix/SocketMonitor_WIN32.h +99 -0
- data/ext/quickfix/SocketServer.cpp +163 -0
- data/ext/quickfix/SocketServer.h +100 -0
- data/ext/quickfix/ThreadedSSLSocketAcceptor.cpp +436 -0
- data/ext/quickfix/ThreadedSSLSocketAcceptor.h +209 -0
- data/ext/quickfix/ThreadedSSLSocketConnection.cpp +364 -0
- data/ext/quickfix/ThreadedSSLSocketConnection.h +191 -0
- data/ext/quickfix/ThreadedSSLSocketInitiator.cpp +434 -0
- data/ext/quickfix/ThreadedSSLSocketInitiator.h +193 -0
- data/ext/quickfix/ThreadedSocketAcceptor.cpp +242 -0
- data/ext/quickfix/ThreadedSocketAcceptor.h +95 -0
- data/ext/quickfix/ThreadedSocketConnection.cpp +227 -0
- data/ext/quickfix/ThreadedSocketConnection.h +89 -0
- data/ext/quickfix/ThreadedSocketInitiator.cpp +238 -0
- data/ext/quickfix/ThreadedSocketInitiator.h +78 -0
- data/ext/quickfix/TimeRange.cpp +227 -0
- data/ext/quickfix/TimeRange.h +215 -0
- data/ext/quickfix/Utility.cpp +639 -0
- data/ext/quickfix/Utility.h +255 -0
- data/ext/quickfix/UtilitySSL.cpp +1612 -0
- data/ext/quickfix/UtilitySSL.h +274 -0
- data/ext/quickfix/Values.h +63 -0
- data/ext/quickfix/config-all.h +10 -0
- data/ext/quickfix/config.h +10 -0
- data/ext/quickfix/config_unix.h +178 -0
- data/ext/quickfix/config_windows.h +0 -0
- data/ext/quickfix/dirent_windows.h +838 -0
- data/ext/quickfix/double-conversion/bignum-dtoa.cc +641 -0
- data/ext/quickfix/double-conversion/bignum-dtoa.h +84 -0
- data/ext/quickfix/double-conversion/bignum.cc +766 -0
- data/ext/quickfix/double-conversion/bignum.h +144 -0
- data/ext/quickfix/double-conversion/cached-powers.cc +176 -0
- data/ext/quickfix/double-conversion/cached-powers.h +64 -0
- data/ext/quickfix/double-conversion/diy-fp.cc +57 -0
- data/ext/quickfix/double-conversion/diy-fp.h +118 -0
- data/ext/quickfix/double-conversion/double-conversion.cc +994 -0
- data/ext/quickfix/double-conversion/double-conversion.h +543 -0
- data/ext/quickfix/double-conversion/fast-dtoa.cc +665 -0
- data/ext/quickfix/double-conversion/fast-dtoa.h +88 -0
- data/ext/quickfix/double-conversion/fixed-dtoa.cc +404 -0
- data/ext/quickfix/double-conversion/fixed-dtoa.h +56 -0
- data/ext/quickfix/double-conversion/ieee.h +402 -0
- data/ext/quickfix/double-conversion/strtod.cc +557 -0
- data/ext/quickfix/double-conversion/strtod.h +45 -0
- data/ext/quickfix/double-conversion/utils.h +374 -0
- data/ext/quickfix/extconf.rb +76 -0
- data/ext/quickfix/index.h +37 -0
- data/ext/quickfix/pugiconfig.hpp +77 -0
- data/ext/quickfix/pugixml.cpp +13237 -0
- data/ext/quickfix/pugixml.hpp +1516 -0
- data/ext/quickfix/scope_guard.hpp +215 -0
- data/ext/quickfix/stdint_msvc.h +254 -0
- data/ext/quickfix/strptime.h +7 -0
- data/lib/2.4/quickfix.so +0 -0
- data/lib/2.5/quickfix.so +0 -0
- data/lib/2.6/quickfix.so +0 -0
- data/lib/2.7/quickfix.so +0 -0
- data/lib/3.0/quickfix.so +0 -0
- data/lib/3.1/quickfix.so +0 -0
- data/lib/3.2/quickfix.so +0 -0
- data/lib/3.3/quickfix.so +0 -0
- data/lib/3.4/quickfix.so +0 -0
- data/lib/quickfix40.rb +274 -0
- data/lib/quickfix41.rb +351 -0
- data/lib/quickfix42.rb +1184 -0
- data/lib/quickfix43.rb +3504 -0
- data/lib/quickfix44.rb +14040 -0
- data/lib/quickfix50.rb +20051 -0
- data/lib/quickfix50sp1.rb +23596 -0
- data/lib/quickfix50sp2.rb +412444 -0
- data/lib/quickfix_fields.rb +79393 -0
- data/lib/quickfix_ruby.rb +82 -0
- data/lib/quickfixt11.rb +65 -0
- data/spec/FIX40.xml +862 -0
- data/spec/FIX41.xml +1282 -0
- data/spec/FIX42.xml +2743 -0
- data/spec/FIX43.xml +4230 -0
- data/spec/FIX44.xml +6600 -0
- data/spec/FIX50.xml +8142 -0
- data/spec/FIX50SP1.xml +9506 -0
- data/spec/FIX50SP2.xml +26069 -0
- data/spec/FIXT11.xml +252 -0
- data/test/DataDictionaryTestCase.rb +268 -0
- data/test/DictionaryTestCase.rb +112 -0
- data/test/FieldBaseTestCase.rb +24 -0
- data/test/MessageStoreTestCase.rb +19 -0
- data/test/MessageTestCase.rb +368 -0
- data/test/SessionSettingsTestCase.rb +41 -0
- metadata +247 -0
@@ -0,0 +1,203 @@
|
|
1
|
+
/* -*- C++ -*- */
|
2
|
+
|
3
|
+
/* ====================================================================
|
4
|
+
* Copyright (c) 1998-2006 Ralf S. Engelschall. All rights reserved.
|
5
|
+
*
|
6
|
+
* Redistribution and use in source and binary forms, with or without
|
7
|
+
* modification, are permitted provided that the following conditions
|
8
|
+
* are met:
|
9
|
+
*
|
10
|
+
* 1. Redistributions of source code must retain the above copyright
|
11
|
+
* notice, this list of conditions and the following disclaimer.
|
12
|
+
*
|
13
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
14
|
+
* notice, this list of conditions and the following
|
15
|
+
* disclaimer in the documentation and/or other materials
|
16
|
+
* provided with the distribution.
|
17
|
+
*
|
18
|
+
* 3. All advertising materials mentioning features or use of this
|
19
|
+
* software must display the following acknowledgment:
|
20
|
+
* "This product includes software developed by
|
21
|
+
* Ralf S. Engelschall <rse@engelschall.com> for use in the
|
22
|
+
* mod_ssl project (http://www.modssl.org/)."
|
23
|
+
*
|
24
|
+
* 4. The names "mod_ssl" must not be used to endorse or promote
|
25
|
+
* products derived from this software without prior written
|
26
|
+
* permission. For written permission, please contact
|
27
|
+
* rse@engelschall.com.
|
28
|
+
*
|
29
|
+
* 5. Products derived from this software may not be called "mod_ssl"
|
30
|
+
* nor may "mod_ssl" appear in their names without prior
|
31
|
+
* written permission of Ralf S. Engelschall.
|
32
|
+
*
|
33
|
+
* 6. Redistributions of any form whatsoever must retain the following
|
34
|
+
* acknowledgment:
|
35
|
+
* "This product includes software developed by
|
36
|
+
* Ralf S. Engelschall <rse@engelschall.com> for use in the
|
37
|
+
* mod_ssl project (http://www.modssl.org/)."
|
38
|
+
*
|
39
|
+
* THIS SOFTWARE IS PROVIDED BY RALF S. ENGELSCHALL ``AS IS'' AND ANY
|
40
|
+
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
41
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
42
|
+
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RALF S. ENGELSCHALL OR
|
43
|
+
* HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
44
|
+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
45
|
+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
46
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
47
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
48
|
+
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
49
|
+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
50
|
+
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
51
|
+
* ====================================================================
|
52
|
+
*/
|
53
|
+
|
54
|
+
/* ====================================================================
|
55
|
+
* Copyright (c) 1995-1999 Ben Laurie. All rights reserved.
|
56
|
+
*
|
57
|
+
* Redistribution and use in source and binary forms, with or without
|
58
|
+
* modification, are permitted provided that the following conditions
|
59
|
+
* are met:
|
60
|
+
*
|
61
|
+
* 1. Redistributions of source code must retain the above copyright
|
62
|
+
* notice, this list of conditions and the following disclaimer.
|
63
|
+
*
|
64
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
65
|
+
* notice, this list of conditions and the following disclaimer in
|
66
|
+
* the documentation and/or other materials provided with the
|
67
|
+
* distribution.
|
68
|
+
*
|
69
|
+
* 3. All advertising materials mentioning features or use of this
|
70
|
+
* software must display the following acknowledgment:
|
71
|
+
* "This product includes software developed by Ben Laurie
|
72
|
+
* for use in the Apache-SSL HTTP server project."
|
73
|
+
*
|
74
|
+
* 4. The name "Apache-SSL Server" must not be used to
|
75
|
+
* endorse or promote products derived from this software without
|
76
|
+
* prior written permission.
|
77
|
+
*
|
78
|
+
* 5. Redistributions of any form whatsoever must retain the following
|
79
|
+
* acknowledgment:
|
80
|
+
* "This product includes software developed by Ben Laurie
|
81
|
+
* for use in the Apache-SSL HTTP server project."
|
82
|
+
*
|
83
|
+
* THIS SOFTWARE IS PROVIDED BY BEN LAURIE ``AS IS'' AND ANY
|
84
|
+
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
85
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
86
|
+
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BEN LAURIE OR
|
87
|
+
* HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
88
|
+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
89
|
+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
90
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
91
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
92
|
+
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
93
|
+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
94
|
+
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
95
|
+
* ====================================================================
|
96
|
+
*/
|
97
|
+
|
98
|
+
/****************************************************************************
|
99
|
+
** Copyright (c) 2001-2014
|
100
|
+
**
|
101
|
+
** This file is part of the QuickFIX FIX Engine
|
102
|
+
**
|
103
|
+
** This file may be distributed under the terms of the quickfixengine.org
|
104
|
+
** license as defined by quickfixengine.org and appearing in the file
|
105
|
+
** LICENSE included in the packaging of this file.
|
106
|
+
**
|
107
|
+
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
108
|
+
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
109
|
+
**
|
110
|
+
** See http://www.quickfixengine.org/LICENSE for licensing information.
|
111
|
+
**
|
112
|
+
** Contact ask@quickfixengine.org if any conditions of this licensing are
|
113
|
+
** not clear to you.
|
114
|
+
**
|
115
|
+
****************************************************************************/
|
116
|
+
|
117
|
+
#ifndef FIX_SSLSOCKETINITIATOR_H
|
118
|
+
#define FIX_SSLSOCKETINITIATOR_H
|
119
|
+
|
120
|
+
#ifndef HAVE_SSL
|
121
|
+
#error SSLSocketInitiator.h included, but HAVE_SSL not defined
|
122
|
+
#endif
|
123
|
+
|
124
|
+
#ifdef HAVE_SSL
|
125
|
+
|
126
|
+
#ifdef _MSC_VER
|
127
|
+
#pragma warning(disable : 4503 4355 4786 4290)
|
128
|
+
#endif
|
129
|
+
|
130
|
+
#include "HostDetailsProvider.h"
|
131
|
+
#include "Initiator.h"
|
132
|
+
#include "SSLSocketConnection.h"
|
133
|
+
#include "SocketConnector.h"
|
134
|
+
|
135
|
+
namespace FIX {
|
136
|
+
enum SSLHandshakeStatus {
|
137
|
+
SSL_HANDSHAKE_FAILED = 0,
|
138
|
+
SSL_HANDSHAKE_SUCCEDED = 1,
|
139
|
+
SSL_HANDSHAKE_IN_PROGRESS = 2
|
140
|
+
};
|
141
|
+
/// Socket implementation of Initiator.
|
142
|
+
class SSLSocketInitiator : public Initiator, SocketConnector::Strategy {
|
143
|
+
public:
|
144
|
+
SSLSocketInitiator(Application &, MessageStoreFactory &, const SessionSettings &) EXCEPT(ConfigError);
|
145
|
+
SSLSocketInitiator(Application &, MessageStoreFactory &, const SessionSettings &, LogFactory &) EXCEPT(ConfigError);
|
146
|
+
|
147
|
+
virtual ~SSLSocketInitiator();
|
148
|
+
|
149
|
+
void setPassword(const std::string &pwd) { m_password.assign(pwd); }
|
150
|
+
|
151
|
+
void setCertAndKey(X509 *cert, RSA *key) {
|
152
|
+
m_cert = cert;
|
153
|
+
m_key = key;
|
154
|
+
}
|
155
|
+
|
156
|
+
int passwordHandleCallback(char *buf, size_t bufsize, int verify);
|
157
|
+
|
158
|
+
static int passwordHandleCB(char *buf, int bufsize, int verify, void *instance);
|
159
|
+
|
160
|
+
private:
|
161
|
+
typedef std::map<socket_handle, SSLSocketConnection *> SocketConnections;
|
162
|
+
|
163
|
+
void onConfigure(const SessionSettings &) EXCEPT(ConfigError);
|
164
|
+
void onInitialize(const SessionSettings &) EXCEPT(RuntimeError);
|
165
|
+
|
166
|
+
void onStart();
|
167
|
+
bool onPoll();
|
168
|
+
void onStop();
|
169
|
+
|
170
|
+
void doConnect(const SessionID &, const Dictionary &d);
|
171
|
+
void onConnect(SocketConnector &, socket_handle);
|
172
|
+
void onWrite(SocketConnector &, socket_handle);
|
173
|
+
bool onData(SocketConnector &, socket_handle);
|
174
|
+
void onDisconnect(SocketConnector &, socket_handle);
|
175
|
+
void onError(SocketConnector &);
|
176
|
+
void onTimeout(SocketConnector &);
|
177
|
+
void disconnectPendingSSLHandshakesThatTakeTooLong(time_t now);
|
178
|
+
SSLHandshakeStatus handshakeSSL(SSLSocketConnection *connection);
|
179
|
+
void handshakeSSLAndHandleConnection(SocketConnector &connector, socket_handle s);
|
180
|
+
|
181
|
+
SocketConnector m_connector;
|
182
|
+
|
183
|
+
HostDetailsProvider m_hostDetailsProvider;
|
184
|
+
SocketConnections m_pendingSSLHandshakes;
|
185
|
+
SocketConnections m_pendingConnections;
|
186
|
+
SocketConnections m_connections;
|
187
|
+
time_t m_lastConnect;
|
188
|
+
int m_reconnectInterval;
|
189
|
+
bool m_noDelay;
|
190
|
+
int m_sendBufSize;
|
191
|
+
int m_rcvBufSize;
|
192
|
+
bool m_sslInit;
|
193
|
+
SSL_CTX *m_ctx;
|
194
|
+
std::string m_password;
|
195
|
+
X509 *m_cert;
|
196
|
+
RSA *m_key;
|
197
|
+
};
|
198
|
+
/*! @} */
|
199
|
+
} // namespace FIX
|
200
|
+
|
201
|
+
#endif
|
202
|
+
|
203
|
+
#endif // FIX_SSLSOCKETINITIATOR_H
|
@@ -0,0 +1,129 @@
|
|
1
|
+
#ifndef HAVE_SSL
|
2
|
+
|
3
|
+
struct SSL {};
|
4
|
+
struct RSA {};
|
5
|
+
struct X509 {};
|
6
|
+
|
7
|
+
namespace FIX {
|
8
|
+
enum SSLHandshakeStatus {
|
9
|
+
SSL_HANDSHAKE_FAILED = 0,
|
10
|
+
SSL_HANDSHAKE_SUCCEDED = 1,
|
11
|
+
SSL_HANDSHAKE_IN_PROGRESS = 2
|
12
|
+
};
|
13
|
+
|
14
|
+
class SSLSocketInitiator : public Initiator, SocketConnector::Strategy {
|
15
|
+
public:
|
16
|
+
SSLSocketInitiator(Application &application, MessageStoreFactory &factory, const SessionSettings &settings)
|
17
|
+
EXCEPT(ConfigError)
|
18
|
+
: Initiator(application, factory, settings) {
|
19
|
+
throw ConfigError("HAVE_SSL not enabled");
|
20
|
+
}
|
21
|
+
|
22
|
+
SSLSocketInitiator(
|
23
|
+
Application &application,
|
24
|
+
MessageStoreFactory &factory,
|
25
|
+
const SessionSettings &settings,
|
26
|
+
LogFactory &logFactory) EXCEPT(ConfigError)
|
27
|
+
: Initiator(application, factory, settings, logFactory) {
|
28
|
+
throw ConfigError("HAVE_SSL not enabled");
|
29
|
+
}
|
30
|
+
|
31
|
+
virtual ~SSLSocketInitiator() {}
|
32
|
+
|
33
|
+
void setPassword(const std::string &) {}
|
34
|
+
|
35
|
+
void setCertAndKey(X509 *, RSA *) {}
|
36
|
+
|
37
|
+
int passwordHandleCallback(char *, size_t, int) { return 0; }
|
38
|
+
|
39
|
+
static int passwordHandleCB(char *, int, int, void *) { return 0; }
|
40
|
+
|
41
|
+
private:
|
42
|
+
void onStart() {};
|
43
|
+
bool onPoll() { return false; };
|
44
|
+
void onStop() {};
|
45
|
+
|
46
|
+
void doConnect(const SessionID &, const Dictionary &) override {};
|
47
|
+
void onConnect(SocketConnector &, socket_handle) override {};
|
48
|
+
void onWrite(SocketConnector &, socket_handle) override {};
|
49
|
+
bool onData(SocketConnector &, socket_handle) override { return false; };
|
50
|
+
void onDisconnect(SocketConnector &, socket_handle) override {};
|
51
|
+
void onError(SocketConnector &) override {};
|
52
|
+
};
|
53
|
+
|
54
|
+
class SSLSocketAcceptor : public Acceptor, SocketServer::Strategy {
|
55
|
+
public:
|
56
|
+
SSLSocketAcceptor(Application &application, MessageStoreFactory &factory, const SessionSettings &settings)
|
57
|
+
EXCEPT(ConfigError)
|
58
|
+
: Acceptor(application, factory, settings) {
|
59
|
+
throw ConfigError("HAVE_SSL not enabled");
|
60
|
+
}
|
61
|
+
|
62
|
+
SSLSocketAcceptor(
|
63
|
+
Application &application,
|
64
|
+
MessageStoreFactory &factory,
|
65
|
+
const SessionSettings &settings,
|
66
|
+
LogFactory &logFactory) EXCEPT(ConfigError)
|
67
|
+
: Acceptor(application, factory, settings, logFactory) {
|
68
|
+
throw ConfigError("HAVE_SSL not enabled");
|
69
|
+
}
|
70
|
+
|
71
|
+
virtual ~SSLSocketAcceptor() {}
|
72
|
+
|
73
|
+
void setPassword(const std::string &pwd) {}
|
74
|
+
|
75
|
+
int passwordHandleCallback(char *, size_t, int) { return 0; }
|
76
|
+
|
77
|
+
static int passPhraseHandleCB(char *, int, int, void *) { return 0; }
|
78
|
+
|
79
|
+
private:
|
80
|
+
void onStart() override {};
|
81
|
+
bool onPoll() override { return false; };
|
82
|
+
void onStop() override {};
|
83
|
+
|
84
|
+
void onConnect(SocketServer &, socket_handle, socket_handle) override {};
|
85
|
+
void onWrite(SocketServer &, socket_handle) override {};
|
86
|
+
bool onData(SocketServer &, socket_handle) override { return false; };
|
87
|
+
void onDisconnect(SocketServer &, socket_handle) override {};
|
88
|
+
void onError(SocketServer &) override {};
|
89
|
+
};
|
90
|
+
|
91
|
+
class SSLSocketConnection : Responder {
|
92
|
+
public:
|
93
|
+
typedef std::set<SessionID> Sessions;
|
94
|
+
|
95
|
+
SSLSocketConnection(socket_handle, SSL *, Sessions, SocketMonitor *) {}
|
96
|
+
SSLSocketConnection(SSLSocketInitiator &, const SessionID &, socket_handle, SSL *, SocketMonitor *) {}
|
97
|
+
virtual ~SSLSocketConnection() {};
|
98
|
+
|
99
|
+
socket_handle getSocket() const { return 0; }
|
100
|
+
Session *getSession() const { return nullptr; }
|
101
|
+
|
102
|
+
bool read(SocketConnector &) { return false; };
|
103
|
+
bool read(SSLSocketAcceptor &, SocketServer &) { return false; };
|
104
|
+
bool processQueue() { return false; }
|
105
|
+
|
106
|
+
void signal() {}
|
107
|
+
|
108
|
+
void subscribeToSocketWriteAvailableEvents() {}
|
109
|
+
|
110
|
+
void unsignal() {}
|
111
|
+
|
112
|
+
void setHandshakeStartTime(time_t) {}
|
113
|
+
|
114
|
+
int getSecondsFromHandshakeStart(time_t) { return 0; }
|
115
|
+
|
116
|
+
void onTimeout() {}
|
117
|
+
|
118
|
+
SSL *sslObject() { return nullptr; }
|
119
|
+
|
120
|
+
bool didProcessQueueRequestToRead() const { return false; };
|
121
|
+
bool didReadFromSocketRequestToWrite() const { return false; };
|
122
|
+
|
123
|
+
private:
|
124
|
+
bool send(const std::string &) override { return false; };
|
125
|
+
void disconnect() override {};
|
126
|
+
};
|
127
|
+
} // namespace FIX
|
128
|
+
|
129
|
+
#endif
|