blob: 7ab156f105538a954fc6fa16ea6a6ccf9054af9d [file] [log] [blame]
Remi NGUYEN VAN2ee0c6b2019-06-06 18:56:06 +09001///////////////////////////////////////////////////////////////////////////////
2// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
3///////////////////////////////////////////////////////////////////////////////
4
5// This file is a frozen snapshot of an AIDL interface (or parcelable). Do not
6// try to edit this file. It looks like you are doing that because you have
7// modified an AIDL interface in a backward-incompatible way, e.g., deleting a
8// function from an interface or a field from a parcelable and it broke the
9// build. That breakage is intended.
10//
11// You must not make a backward incompatible changes to the AIDL files built
12// with the aidl_interface module type with versions property set. The module
13// type is used to build AIDL files in a way that they can be used across
14// independently updatable components of the system. If a device is shipped
15// with such a backward incompatible change, it has a high risk of breaking
16// later when a module using the interface is updated, e.g., Mainline modules.
17
markchienca5ebb62019-04-30 10:27:23 +080018package android.net.dhcp;
19parcelable DhcpServingParamsParcel {
20 int serverAddr;
21 int serverAddrPrefixLength;
22 int[] defaultRouters;
23 int[] dnsServers;
24 int[] excludedAddrs;
25 long dhcpLeaseTimeSecs;
26 int linkMtu;
27 boolean metered;
28}