MCPcopy Create free account
hub / github.com/chainreactors/EvilProxy / Read

Method Read

internal/api/buffered_conn.go:14–22  ·  view source on GitHub ↗
(p []byte)

Source from the content-addressed store, hash-verified

12}
13
14func (c *bufferedConn) Read(p []byte) (int, error) {
15 if c == nil {
16 return 0, net.ErrClosed
17 }
18 if c.reader == nil {
19 return c.Conn.Read(p)
20 }
21 return c.reader.Read(p)
22}
23
24func (c *bufferedConn) ConnectionState() tls.ConnectionState {
25 if c == nil || c.Conn == nil {

Callers 13

hashKeyFunction · 0.45
GenerateCommandIDFunction · 0.45
randomHexFunction · 0.45
parsePsOutputFunction · 0.45
GeneratePKCECodesFunction · 0.45
generateCodeVerifierFunction · 0.45
generateCodeVerifierFunction · 0.45
GenerateRequestIDFunction · 0.45
randomProviderNameFunction · 0.45
GenerateRandomStateFunction · 0.45

Calls

no outgoing calls