package net
import "github.com/Diarkis/diarkis/net"
Index
- Constants
- func CreateEndPoint(configs map[string]interface{}, defaultPort string) (string, string)
- func CreateFixedEndPoint(configs map[string]interface{}, defaultPort string) (string, string)
- func FindAvailablePort(addr string, port string) string
- func FindInterfaces()
- func FindTakenPort(addr string, port string) string
- func GetAddrByInterfaceName(name string) string
- func GetLocalAddrsByFamily(isV4, isV6 bool) []net.IP
Constants
const Localhost string = "127.0.0.1"
Localhost Default address
Functions
func CreateEndPoint
func CreateEndPoint(configs map[string]interface{}, defaultPort string) (string, string)
CreateEndPoint Creates server end point if port is not available, it automatically searches an open port
func CreateFixedEndPoint
func CreateFixedEndPoint(configs map[string]interface{}, defaultPort string) (string, string)
CreateFixedEndPoint creates an endpoint with the given address and port
func FindAvailablePort
func FindAvailablePort(addr string, port string) string
FindAvailablePort Searches for available port
func FindInterfaces
func FindInterfaces()
FindInterfaces Searches for network interfaces and their addresses
func FindTakenPort
func FindTakenPort(addr string, port string) string
FindTakenPort searches for a port that is already taken:
This is meant to be used to search for internal communication endpoint
func GetAddrByInterfaceName
func GetAddrByInterfaceName(name string) string
GetAddrByInterfaceName Returns an address to bind by network interface name
func GetLocalAddrsByFamily
func GetLocalAddrsByFamily(isV4, isV6 bool) []net.IP
GetLocalAddrsByFamily collects IP addresses from network interfaces for specified address family.