mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-11-03 19:17:29 -05:00 
			
		
		
		
	The vendor/ folder was created with the help of @FiloSottile's gvt and vendorcheck. Any dependencies of Caddy plugins outside this repo are not vendored. We do not remove any unused, vendored packages because vendorcheck -u only checks using the current build configuration; i.e. packages that may be imported by files toggled by build tags of other systems. CI tests have been updated to ignore the vendor/ folder. When Go 1.9 is released, a few of the go commands should be revised to again use ./... as it will ignore the vendor folder by default.
		
			
				
	
	
		
			30 lines
		
	
	
		
			760 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			760 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +build windows
 | 
						|
 | 
						|
package dns
 | 
						|
 | 
						|
import "net"
 | 
						|
 | 
						|
type SessionUDP struct {
 | 
						|
	raddr *net.UDPAddr
 | 
						|
}
 | 
						|
 | 
						|
func (s *SessionUDP) RemoteAddr() net.Addr { return s.raddr }
 | 
						|
 | 
						|
// ReadFromSessionUDP acts just like net.UDPConn.ReadFrom(), but returns a session object instead of a
 | 
						|
// net.UDPAddr.
 | 
						|
func ReadFromSessionUDP(conn *net.UDPConn, b []byte) (int, *SessionUDP, error) {
 | 
						|
	n, raddr, err := conn.ReadFrom(b)
 | 
						|
	if err != nil {
 | 
						|
		return n, nil, err
 | 
						|
	}
 | 
						|
	session := &SessionUDP{raddr.(*net.UDPAddr)}
 | 
						|
	return n, session, err
 | 
						|
}
 | 
						|
 | 
						|
// WriteToSessionUDP acts just like net.UDPConn.WritetTo(), but uses a *SessionUDP instead of a net.Addr.
 | 
						|
func WriteToSessionUDP(conn *net.UDPConn, b []byte, session *SessionUDP) (int, error) {
 | 
						|
	n, err := conn.WriteTo(b, session.raddr)
 | 
						|
	return n, err
 | 
						|
}
 | 
						|
 |