better log

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Jens Langhammer
2025-05-14 13:26:12 +02:00
parent 2bba0ddd74
commit ad57c66a32
4 changed files with 22 additions and 25 deletions

View File

@ -16,21 +16,12 @@ func NewTLSConnection(initialData []byte) TLSConnection {
reader: bytes.NewBuffer(initialData),
writer: bytes.NewBuffer([]byte{}),
}
// e.Request.Log().WithField("tls", len(c.reader.Bytes())).Debug("TLS Early")
return c
}
// func (conn *TLSConnection) SetCode(code radius.Code) {
// conn.code = code
// }
func (conn TLSConnection) Read(p []byte) (int, error) { return conn.reader.Read(p) }
func (conn TLSConnection) Write(p []byte) (int, error) {
// final := make([]byte, 1)
// final[0] = 128 // TLS Flags
// final = append(final, p...)
return conn.writer.Write(p)
// return 0, nil
// return conn.EAPConnection.Write(conn.code, final)
}
func (conn TLSConnection) Close() error { return nil }
func (conn TLSConnection) LocalAddr() net.Addr { return nil }
@ -42,7 +33,3 @@ func (conn TLSConnection) SetWriteDeadline(t time.Time) error { return nil }
func (conn TLSConnection) TLSData() []byte {
return conn.writer.Bytes()
}
// func (conn TLSConnection) ContentType() layers.TLSType {
// return layers.TLSType(conn.TypeData[1])
// }