mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-21 01:27:03 -05:00
add some logs
This commit is contained in:
parent
5d9dacc261
commit
156af4241d
@ -6,6 +6,8 @@ import (
|
||||
"sync/atomic"
|
||||
"time"
|
||||
|
||||
"v2ray.com/core/common/session"
|
||||
|
||||
"github.com/miekg/dns"
|
||||
"v2ray.com/core"
|
||||
"v2ray.com/core/common"
|
||||
@ -269,6 +271,8 @@ func msgToBuffer(msg *dns.Msg) (*buf.Buffer, error) {
|
||||
}
|
||||
|
||||
func (s *ClassicNameServer) sendQuery(ctx context.Context, domain string) {
|
||||
newError("querying DNS for: ", domain).AtDebug().WriteToLog(session.ExportIDToError(ctx))
|
||||
|
||||
msgs := s.buildMsgs(domain)
|
||||
|
||||
for _, msg := range msgs {
|
||||
|
@ -23,6 +23,8 @@ func (server *Server) Start() (net.Destination, error) {
|
||||
return net.Destination{}, err
|
||||
}
|
||||
server.Port = net.Port(conn.LocalAddr().(*net.UDPAddr).Port)
|
||||
fmt.Println("UDP server started on port ", server.Port)
|
||||
|
||||
server.conn = conn
|
||||
go server.handleConnection(conn)
|
||||
localAddr := conn.LocalAddr().(*net.UDPAddr)
|
||||
|
Loading…
Reference in New Issue
Block a user