refactor(linux-network): use the new managed array list

This commit is contained in:
utox39
2025-08-25 03:18:31 +02:00
parent 9c4e032c04
commit d9ac4e58fc

View File

@@ -11,8 +11,8 @@ pub const NetInfo = struct {
ipv4_addr: []u8,
};
pub fn getNetInfo(allocator: std.mem.Allocator) !std.ArrayList(NetInfo) {
var net_info_list = std.ArrayList(NetInfo).init(allocator);
pub fn getNetInfo(allocator: std.mem.Allocator) !std.array_list.Managed(NetInfo) {
var net_info_list = std.array_list.Managed(NetInfo).init(allocator);
var ifap: ?*c_ifaddrs.ifaddrs = null;
if (c_ifaddrs.getifaddrs(&ifap) != 0) {