2019-07-17 11:50:58 +00:00
|
|
|
module net
|
|
|
|
|
2019-11-24 03:27:02 +00:00
|
|
|
fn C.gethostname() int
|
|
|
|
// hostname returns the host name reported by the kernel.
|
2019-07-17 11:50:58 +00:00
|
|
|
pub fn hostname() ?string {
|
2019-12-21 22:41:42 +00:00
|
|
|
mut name := [256]byte
|
2019-07-17 11:50:58 +00:00
|
|
|
// https://www.ietf.org/rfc/rfc1035.txt
|
|
|
|
// The host name is returned as a null-terminated string.
|
|
|
|
res := C.gethostname(&name, 256)
|
|
|
|
if res != 0 {
|
2019-11-12 16:23:53 +00:00
|
|
|
return error('net.hostname: failed with $res')
|
2019-07-17 11:50:58 +00:00
|
|
|
}
|
2019-12-21 22:41:42 +00:00
|
|
|
return tos_clone(name)
|
2019-07-17 11:50:58 +00:00
|
|
|
}
|
2019-10-09 18:01:31 +00:00
|
|
|
|