Public Member Functions | |
| virtual void | onUnknownIncomingConnection (const Message &incomingLogon, Session *session, bool *acceptConnection, std::string *rejectReason)=0 |
| Called when an unknown incoming FIX connection is detected. | |
Definition at line 19 of file IEngineListener.h.
| virtual void onUnknownIncomingConnection | ( | const Message & | incomingLogon, | |
| Session * | session, | |||
| bool * | acceptConnection, | |||
| std::string * | rejectReason | |||
| ) | [pure virtual] |
Called when an unknown incoming FIX connection is detected.
To accept the session set acceptConnection to 'true'. Otherwise the incoming connection will be rejected.
If the session is rejected and the rejectReason is specified then the Logout(5) message will be sent to the counterpart.
| [in] | incomingLogon | Incoming Logon message. |
| [in] | session | The automatically created Session object. |
| [out] | acceptConnection | To accept the connection set this parameter to 'true', otherwhise it will be rejected. |
| [out] | rejectReason | To send the Logout message before closing the rejected connection set the rejection description to this parameter. |
1.5.7.1