Expand description
Validate a socket address string before binding.
Catches three classes of error before the embedder spawns the bind task:
- Empty address strings (operator typo / missing env var).
- Address strings longer than 256 characters (defensive cap).
- Addresses that fail
parse::<SocketAddr>()(malformed).
Logs a warning - but does not reject - when the port is in the privileged range (< 1024), since Land’s defaults all live above 50 000.
Functions§
- Fn
- Parses and validates
AddressStringfor use as a Vine gRPC bind address.