ladybird/Userland/Utilities/hostname.cpp

34 lines
870 B
C++
Raw Normal View History

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibCore/ArgsParser.h>
2022-01-14 01:15:25 +03:00
#include <LibCore/System.h>
#include <LibMain/Main.h>
#include <limits.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
2018-10-26 10:54:29 +03:00
2022-01-14 01:15:25 +03:00
ErrorOr<int> serenity_main(Main::Arguments args)
2018-10-26 10:54:29 +03:00
{
const char* hostname = nullptr;
Core::ArgsParser args_parser;
args_parser.add_positional_argument(hostname, "Hostname to set", "hostname", Core::ArgsParser::Required::No);
2022-01-14 01:15:25 +03:00
args_parser.parse(args);
if (!hostname) {
2022-01-14 01:15:25 +03:00
outln("{}", TRY(Core::System::gethostname()));
} else {
if (strlen(hostname) >= HOST_NAME_MAX) {
warnln("Hostname must be less than {} characters", HOST_NAME_MAX);
return 1;
}
2022-01-14 01:15:25 +03:00
TRY(Core::System::sethostname(hostname));
}
2018-10-26 10:54:29 +03:00
return 0;
}