2019-07-17 13:50:58 +02:00
|
|
|
module net
|
|
|
|
|
2019-11-24 04:27:02 +01:00
|
|
|
fn C.gethostname() int
|
|
|
|
// hostname returns the host name reported by the kernel.
|
2019-07-17 13:50:58 +02:00
|
|
|
pub fn hostname() ?string {
|
2019-12-21 23:41:42 +01:00
|
|
|
mut name := [256]byte
|
2019-07-17 13:50:58 +02: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 17:23:53 +01:00
|
|
|
return error('net.hostname: failed with $res')
|
2019-07-17 13:50:58 +02:00
|
|
|
}
|
2019-12-21 23:41:42 +01:00
|
|
|
return tos_clone(name)
|
2019-07-17 13:50:58 +02:00
|
|
|
}
|
2019-10-09 20:01:31 +02:00
|
|
|
|