1
0
Fork 0

Adding request file

logger
Armon Dadgar 2014-01-23 11:29:13 -08:00
parent 5c369f00d4
commit a56c8ea151
1 changed files with 11 additions and 0 deletions

11
request.go Normal file
View File

@ -0,0 +1,11 @@
package socks5
import (
"bufio"
"net"
)
// handleRequest is used for request processing after authentication
func (s *Server) handleRequest(conn net.Conn, bufConn *bufio.Reader) error {
return nil
}