All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.android.system.StructIfaddrs Maven / Gradle / Ivy

Go to download

A library jar that provides APIs for Applications written for the Google Android Platform.

There is a newer version: 15-robolectric-12650502
Show newest version
/*
 * Copyright (C) 2016 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package android.system;

import libcore.util.Objects;

import java.net.InetAddress;

/**
 * Information returned by {@link Os#getifaddrs}. Loosely corresponds to C's
 * {@code struct ifaddrs} from {@code }.
 *
 * @hide
 */
public final class StructIfaddrs {
    public final String ifa_name;
    public final int ifa_flags;
    public final InetAddress ifa_addr;
    public final InetAddress ifa_netmask;
    public final InetAddress ifa_broadaddr;
    public final byte[] hwaddr;

    /**
     * Constructs an instance with the given field values.
     */
    public StructIfaddrs(String ifa_name, int ifa_flags, InetAddress ifa_addr, InetAddress ifa_netmask,
                         InetAddress ifa_broadaddr, byte[] hwaddr) {
        this.ifa_name = ifa_name;
        this.ifa_flags = ifa_flags;
        this.ifa_addr = ifa_addr;
        this.ifa_netmask = ifa_netmask;
        this.ifa_broadaddr = ifa_broadaddr;
        this.hwaddr = hwaddr;
    }

    @Override public String toString() {
        return Objects.toString(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy