adding quickfix library

This commit is contained in:
Ramiro Paz
2026-03-12 12:08:34 -03:00
parent 9e55c5c562
commit c09a1fd21a
1311 changed files with 1887342 additions and 2 deletions

View File

@ -0,0 +1,34 @@
package internal
import "time"
// SessionSettings stores all of the configuration for a given session.
type SessionSettings struct {
ResetOnLogon bool
RefreshOnLogon bool
ResetOnLogout bool
ResetOnDisconnect bool
HeartBtInt time.Duration
HeartBtIntOverride bool
SessionTime *TimeRange
InitiateLogon bool
ResendRequestChunkSize int
EnableLastMsgSeqNumProcessed bool
EnableNextExpectedMsgSeqNum bool
SkipCheckLatency bool
MaxLatency time.Duration
DisableMessagePersist bool
TimeZone *time.Location
ResetSeqTime time.Time
EnableResetSeqTime bool
InChanCapacity int
// Required on logon for FIX.T.1 messages.
DefaultApplVerID string
// Specific to initiators.
ReconnectInterval time.Duration
LogoutTimeout time.Duration
LogonTimeout time.Duration
SocketConnectAddress []string
}