Hi All,
May i know whether these is function to find the current hostname both in windows and Posix.
From,
Vino
Thread overview | |||||
---|---|---|---|---|---|
|
August 27, 2023 Function to get the current hostname for both Windows and Posix | ||||
---|---|---|---|---|
| ||||
Hi All, May i know whether these is function to find the current hostname both in windows and Posix. From, |
August 27, 2023 Re: Function to get the current hostname for both Windows and Posix | ||||
---|---|---|---|---|
| ||||
Posted in reply to vino | On Sunday, August 27, 2023 10:02:35 AM MDT vino via Digitalmars-d-learn wrote: > Hi All, > > May i know whether these is function to find the current > hostname both in windows and Posix. > > From, > Vino It looks like std.socket's Socket.hostName will do the trick. https://dlang.org/phobos/std_socket.html#.Socket.hostName - Jonathan M Davis |
August 28, 2023 Re: Function to get the current hostname for both Windows and Posix | ||||
---|---|---|---|---|
| ||||
Posted in reply to Jonathan M Davis | On Sunday, 27 August 2023 at 21:33:57 UTC, Jonathan M Davis wrote:
> On Sunday, August 27, 2023 10:02:35 AM MDT vino via Digitalmars-d-learn wrote:
>> Hi All,
>>
>> May i know whether these is function to find the current
>> hostname both in windows and Posix.
>>
>> From,
>> Vino
>
> It looks like std.socket's Socket.hostName will do the trick.
>
> https://dlang.org/phobos/std_socket.html#.Socket.hostName
>
> - Jonathan M Davis
Thank you.
|