Type trashing to fix last commit.

This commit is contained in:
Solderpunk 2023-04-09 14:24:39 +02:00
parent 051df29604
commit 1b7d661abd
1 changed files with 2 additions and 1 deletions

View File

@ -409,7 +409,8 @@ func serveFile(path string, info os.FileInfo, logEntry *LogEntry, conn net.Conn,
// Prepare to close the connection *without* TLS Close Notify so the client
// knows something has gone wrong!
tlsConn, _ := conn.(*tls.Conn)
tcpConn := tlsConn.NetConn()
netConn := tlsConn.NetConn()
tcpConn := netConn.(*net.TCPConn)
remoteAddr := conn.RemoteAddr().String()
if errors.Is(err, os.ErrDeadlineExceeded) {
log.Println("Writing to " + remoteAddr + " timed out.")