Procházet zdrojové kódy

tris: add single line TLSDEBUG=short

v1.2.3
Filippo Valsorda před 7 roky
committed by Peter Wu
rodič
revize
740fc926aa
1 změnil soubory, kde provedl 20 přidání a 0 odebrání
  1. +20
    -0
      13.go

+ 20
- 0
13.go Zobrazit soubor

@@ -13,8 +13,11 @@ import (
"fmt"
"hash"
"io"
"log"
"os"
"runtime"
"runtime/debug"
"strings"
"sync/atomic"
"time"

@@ -572,4 +575,21 @@ func (hs *serverHandshakeState) traceErr(err error) {
}
fmt.Fprintf(os.Stderr, "\n%s\n", debug.Stack())
}
if os.Getenv("TLSDEBUG") == "short" {
var pcs [4]uintptr
frames := runtime.CallersFrames(pcs[0:runtime.Callers(3, pcs[:])])
for {
frame, more := frames.Next()
if frame.Function != "crypto/tls.(*halfConn).setErrorLocked" &&
frame.Function != "crypto/tls.(*Conn).sendAlertLocked" &&
frame.Function != "crypto/tls.(*Conn).sendAlert" {
file := frame.File[strings.LastIndex(frame.File, "/")+1:]
log.Printf("%s:%d (%s): %v", file, frame.Line, frame.Function, err)
return
}
if !more {
break
}
}
}
}

Načítá se…
Zrušit
Uložit