adding quickfix

This commit is contained in:
Ramiro Paz
2026-03-09 15:35:32 -03:00
parent 0e8fe168ef
commit fe588e92f1
1222 changed files with 1408232 additions and 1 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
}