hostname 0.1.1
Get the current hostname with gethostname(2)
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
hostname(3d) - 3d
NAME
hostname - Get the environment's hostname with gethostname(2)
SYNOPSIS
import hostname : hostname, hostnamez;
immutable string hostname;
immutable char\* hostnamez;
char\* hostnamez; // -betterC only has this one
DESCRIPTION
The hostname module has a shared static initializer that calls gethostname(2) once, into a static buffer, and then initializes string and immutable char\* typed variables with the contents of that buffer, without copying.
A failure of gethostname(2) is treated as an unrecoverable error, guarded by an assert().
EXAMPLE
#! /usr/bin/env dub
/+ dub.sdl:
dependency "hostname" version="~>0.1.1"
+/
void main() {
import std.stdio : writeln;
import hostname : hostname;
writeln("hostname: ", hostname);
}
BETTERC EXAMPLE
#! /usr/bin/env dub
/+ dub.sdl:
dependency "hostname" version="~>0.1.1"
buildOptions "betterC"
+/
extern(C) void main() {
import core.stdc.stdio : printf;
import hostname : hostnamez;
printf("hostname: %s\n", hostnamez);
}
SEE ALSO
gethostname(2), Sys::Hostname(3pm)
FUTURE DIRECTIONS
This module hard-codes the value of HOST\_NAME\_MAX. When importC is available, that should be used instead.
Perhaps the statically initialized hostnames should be in an optional submodule, separate from a module that just wraps gethostname(2)? The current implementation is what I've wanted 100% of the time, but in other environments hostnames can be subject to change.
COLOPHON
This page is part of the 0.1.1 release of the hostname DUB package. This package can be found at https://code.dlang.org/packages/hostname/. Issues should be submitted to https://github.com/jrfondren/hostname-d/issues.
D - June 7, 2021
- Registered by Julian Fondren
- 0.1.1 released 3 years ago
- jrfondren/hostname-d
- MIT
- Copyright © 2021, Julian Fondren
- Authors:
- Dependencies:
- none
- Versions:
-
0.1.2 2021-Jun-17 0.1.1 2021-Jun-16 0.1.0 2021-Jun-07 ~master 2021-Jun-17 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
0 downloads this month
-
64 downloads total
-
- Score:
- 0.1
- Short URL:
- hostname.dub.pm