summaryrefslogtreecommitdiff
path: root/Userland/Utilities/hostname.cpp
blob: 3275604115c3d32b1784e8445dd393c947751f3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibCore/ArgsParser.h>
#include <LibCore/System.h>
#include <LibMain/Main.h>
#include <limits.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>

ErrorOr<int> serenity_main(Main::Arguments args)
{
    char const* hostname = nullptr;

    Core::ArgsParser args_parser;
    args_parser.add_positional_argument(hostname, "Hostname to set", "hostname", Core::ArgsParser::Required::No);
    args_parser.parse(args);

    if (!hostname) {
        outln("{}", TRY(Core::System::gethostname()));
    } else {
        if (strlen(hostname) >= HOST_NAME_MAX) {
            warnln("Hostname must be less than {} characters", HOST_NAME_MAX);
            return 1;
        }
        TRY(Core::System::sethostname(hostname));
    }
    return 0;
}