2020-04-26 13:54:22 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-04-26 13:54:22 +03:00
|
|
|
*/
|
|
|
|
|
2020-11-15 15:11:21 +03:00
|
|
|
#include <AK/ByteBuffer.h>
|
2020-04-26 13:54:22 +03:00
|
|
|
#include <AK/JsonObject.h>
|
|
|
|
#include <AK/String.h>
|
|
|
|
#include <LibCore/File.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
auto file = Core::File::construct("/proc/net/arp");
|
2021-05-12 12:26:43 +03:00
|
|
|
if (!file->open(Core::OpenMode::ReadOnly)) {
|
2020-04-26 13:54:22 +03:00
|
|
|
fprintf(stderr, "Error: %s\n", file->error_string());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Address HWaddress\n");
|
|
|
|
auto file_contents = file->read_all();
|
2020-06-11 07:40:27 +03:00
|
|
|
auto json = JsonValue::from_string(file_contents);
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY(json.has_value());
|
2020-06-11 07:40:27 +03:00
|
|
|
json.value().as_array().for_each([](auto& value) {
|
2020-04-26 13:54:22 +03:00
|
|
|
auto if_object = value.as_object();
|
|
|
|
|
|
|
|
auto ip_address = if_object.get("ip_address").to_string();
|
|
|
|
auto mac_address = if_object.get("mac_address").to_string();
|
|
|
|
|
|
|
|
printf("%-15s ", ip_address.characters());
|
|
|
|
printf("%-17s ", mac_address.characters());
|
|
|
|
printf("\n");
|
|
|
|
});
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|