gf/net/gudp/gudp_func.go

55 lines
1.5 KiB
Go

// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package gudp
import (
"net"
)
// NewNetConn creates and returns a *net.UDPConn with given addresses.
func NewNetConn(remoteAddress string, localAddress ...string) (*net.UDPConn, error) {
var err error
var remoteAddr, localAddr *net.UDPAddr
remoteAddr, err = net.ResolveUDPAddr("udp", remoteAddress)
if err != nil {
return nil, err
}
if len(localAddress) > 0 {
localAddr, err = net.ResolveUDPAddr("udp", localAddress[0])
if err != nil {
return nil, err
}
}
conn, err := net.DialUDP("udp", localAddr, remoteAddr)
if err != nil {
return nil, err
}
return conn, nil
}
// Send writes data to `address` using UDP connection and then closes the connection.
// Note that it is used for short connection usage.
func Send(address string, data []byte, retry ...Retry) error {
conn, err := NewConn(address)
if err != nil {
return err
}
defer conn.Close()
return conn.Send(data, retry...)
}
// SendRecv writes data to `address` using UDP connection, reads response and then closes the connection.
// Note that it is used for short connection usage.
func SendRecv(address string, data []byte, receive int, retry ...Retry) ([]byte, error) {
conn, err := NewConn(address)
if err != nil {
return nil, err
}
defer conn.Close()
return conn.SendRecv(data, receive, retry...)
}