udp_windows.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // +build windows
  2. package dns
  3. import "net"
  4. // SessionUDP holds the remote address
  5. type SessionUDP struct {
  6. raddr *net.UDPAddr
  7. }
  8. // RemoteAddr returns the remote network address.
  9. func (s *SessionUDP) RemoteAddr() net.Addr { return s.raddr }
  10. // ReadFromSessionUDP acts just like net.UDPConn.ReadFrom(), but returns a session object instead of a
  11. // net.UDPAddr.
  12. // TODO(fastest963): Once go1.10 is released, use ReadMsgUDP.
  13. func ReadFromSessionUDP(conn *net.UDPConn, b []byte) (int, *SessionUDP, error) {
  14. n, raddr, err := conn.ReadFrom(b)
  15. if err != nil {
  16. return n, nil, err
  17. }
  18. session := &SessionUDP{raddr.(*net.UDPAddr)}
  19. return n, session, err
  20. }
  21. // WriteToSessionUDP acts just like net.UDPConn.WriteTo(), but uses a *SessionUDP instead of a net.Addr.
  22. // TODO(fastest963): Once go1.10 is released, use WriteMsgUDP.
  23. func WriteToSessionUDP(conn *net.UDPConn, b []byte, session *SessionUDP) (int, error) {
  24. n, err := conn.WriteTo(b, session.raddr)
  25. return n, err
  26. }
  27. // TODO(fastest963): Once go1.10 is released and we can use *MsgUDP methods
  28. // use the standard method in udp.go for these.
  29. func setUDPSocketOptions(*net.UDPConn) error { return nil }
  30. func parseDstFromOOB([]byte, net.IP) net.IP { return nil }