13 lines
228 B
Go
13 lines
228 B
Go
|
package dhcpd
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
|
||
|
"golang.org/x/net/ipv4"
|
||
|
)
|
||
|
|
||
|
// Create a socket for receiving broadcast packets
|
||
|
func newBroadcastPacketConn(bindAddr net.IP, port int, ifname string) (*ipv4.PacketConn, error) {
|
||
|
return nil, nil
|
||
|
}
|