2020-01-18 05:38:21 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 05:38:21 -03:00
|
|
|
*/
|
|
|
|
|
|
2020-08-05 16:24:48 -03:00
|
|
|
#include <LibCore/ArgsParser.h>
|
2022-01-13 19:15:25 -03:00
|
|
|
#include <LibCore/System.h>
|
|
|
|
|
#include <LibMain/Main.h>
|
2021-04-25 16:05:02 -03:00
|
|
|
#include <limits.h>
|
2019-06-07 06:49:31 -03:00
|
|
|
#include <stdio.h>
|
2018-11-09 07:18:04 -02:00
|
|
|
#include <string.h>
|
2019-06-07 06:49:31 -03:00
|
|
|
#include <unistd.h>
|
2018-10-26 04:54:29 -03:00
|
|
|
|
2022-01-13 19:15:25 -03:00
|
|
|
ErrorOr<int> serenity_main(Main::Arguments args)
|
2018-10-26 04:54:29 -03:00
|
|
|
{
|
2022-07-11 17:42:03 -03:00
|
|
|
StringView hostname {};
|
2020-04-26 02:59:47 -03:00
|
|
|
|
2020-08-05 16:24:48 -03:00
|
|
|
Core::ArgsParser args_parser;
|
|
|
|
|
args_parser.add_positional_argument(hostname, "Hostname to set", "hostname", Core::ArgsParser::Required::No);
|
2022-01-13 19:15:25 -03:00
|
|
|
args_parser.parse(args);
|
2020-08-05 16:24:48 -03:00
|
|
|
|
2022-07-11 17:42:03 -03:00
|
|
|
if (hostname.is_empty()) {
|
2022-01-13 19:15:25 -03:00
|
|
|
outln("{}", TRY(Core::System::gethostname()));
|
2020-08-05 16:24:48 -03:00
|
|
|
} else {
|
2022-07-11 17:42:03 -03:00
|
|
|
if (hostname.length() >= HOST_NAME_MAX) {
|
2021-05-31 11:43:25 -03:00
|
|
|
warnln("Hostname must be less than {} characters", HOST_NAME_MAX);
|
2020-08-05 16:24:48 -03:00
|
|
|
return 1;
|
|
|
|
|
}
|
2022-01-13 19:15:25 -03:00
|
|
|
TRY(Core::System::sethostname(hostname));
|
2020-08-05 16:24:48 -03:00
|
|
|
}
|
2018-10-26 04:54:29 -03:00
|
|
|
return 0;
|
|
|
|
|
}
|