Home | History | Annotate | Download | only in runner

Lines Matching refs:Bugs

207 	if config.Bugs.NullAllCiphers {
218 if hc.config.Bugs.NullAllCiphers {
303 if hc.config.Bugs.SequenceNumberMapping != nil {
305 seqU64 = hc.config.Bugs.SequenceNumberMapping(seqU64)
530 if config.Bugs.MaxPadding {
540 if config.Bugs.PaddingFirstByteBad || config.Bugs.PaddingFirstByteBadIf255 && paddingLen == 256 {
567 paddingLen := hc.config.Bugs.RecordPadding
568 if hc.config.Bugs.OmitRecordContents {
744 if err == io.EOF && c.config.Bugs.ExpectCloseNotify {
778 expect = c.config.Bugs.ExpectInitialRecordVersion
861 if !c.handshakeComplete && !c.config.Bugs.ExpectFalseStart && len(c.config.Bugs.ExpectHalfRTTData) == 0 && len(c.config.Bugs.ExpectEarlyData) == 0 {
878 if c.config.Bugs.MaxReceivePlaintext != 0 {
879 max = c.config.Bugs.MaxReceivePlaintext
959 if c.config.Bugs.FragmentAlert {
962 } else if c.config.Bugs.DoubleAlert {
1004 if msgType := c.config.Bugs.SendWrongMessageType; msgType != 0 {
1013 if msgType := c.config.Bugs.SendTrailingMessageData; msgType != 0 {
1035 if c.config.Bugs.SendHelloRequestBeforeEveryHandshakeMessage {
1042 if c.config.Bugs.PackHandshakeFlight {
1058 if m > maxPlaintext && !c.config.Bugs.SendLargeRecords {
1061 if typ == recordTypeHandshake && c.config.Bugs.MaxHandshakeRecordLength > 0 && m > c.config.Bugs.MaxHandshakeRecordLength {
1062 m = c.config.Bugs.MaxHandshakeRecordLength
1066 if first && isClientHello && !c.config.Bugs.FragmentClientVersion && m < 6 {
1097 if outerType := c.config.Bugs.OuterRecordType; outerType != 0 {
1110 if c.config.Bugs.SendRecordVersion != 0 {
1111 vers = c.config.Bugs.SendRecordVersion
1113 if c.vers == 0 && c.config.Bugs.SendInitialRecordVersion != 0 {
1114 vers = c.config.Bugs.SendInitialRecordVersion
1321 // peer based on the schedule in c.config.Bugs. If resendFunc is
1326 if len(c.config.Bugs.TimeoutSchedule) == 0 {
1332 if c.config.Bugs.PacketAdaptor == nil {
1335 for _, timeout := range c.config.Bugs.TimeoutSchedule {
1337 packets, err := c.config.Bugs.PacketAdaptor.SendReadTimeout(timeout)
1395 if c.config.Bugs.SendSpuriousAlert != 0 {
1396 c.sendAlertLocked(alertLevelError, c.config.Bugs.SendSpuriousAlert)
1399 if c.config.Bugs.SendHelloRequestBeforeEveryAppDataRecord {
1429 if c.config.Bugs.ExpectGREASE && !newSessionTicket.hasGREASEExtension {
1433 if c.config.Bugs.ExpectTicketEarlyDataInfo && newSessionTicket.maxEarlyDataSize == 0 {
1437 if c.config.Bugs.ExpectNoNewSessionTicket {
1509 if c.config.Bugs.BadHelloRequest != nil {
1510 helloReq = c.config.Bugs.BadHelloRequest
1591 if c.handshakeComplete && !c.config.Bugs.NoCloseNotify {
1593 if c.config.Bugs.SendAlertOnShutdown != 0 {
1594 alert = c.config.Bugs.SendAlertOnShutdown
1607 if c.handshakeComplete && alertErr == nil && c.config.Bugs.ExpectCloseNotify {
1636 if c.isDTLS && c.config.Bugs.SendSplitAlert {
1645 if data := c.config.Bugs.AppDataBeforeHandshake; data != nil {
1653 if c.handshakeErr == nil && c.config.Bugs.SendInvalidRecordType {
1745 if c.config.Bugs.NoRenegotiationInfo {
1748 if c.cipherSuite == nil && c.config.Bugs.NoRenegotiationInfoInInitial {
1751 if c.cipherSuite != nil && c.config.Bugs.NoRenegotiationInfoAfterInitial {
1779 duplicateEarlyDataInfo: c.config.Bugs.DuplicateTicketEarlyDataInfo,
1780 customExtension: c.config.Bugs.CustomTicketExtension,
1785 if c.config.Bugs.SendTicketLifetime != 0 {
1786 m.ticketLifetime = uint32(c.config.Bugs.SendTicketLifetime / time.Second)
1800 if !c.config.Bugs.SendEmptySessionTicket {