1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
7 * This file defines the <code>PPB_NetworkList</code> interface.
17 * Type of a network interface.
20 enum PP_NetworkList_Type
{
22 * Type of the network interface is not known.
24 PP_NETWORKLIST_TYPE_UNKNOWN
= 0,
27 * Wired Ethernet network.
29 PP_NETWORKLIST_TYPE_ETHERNET
= 1,
32 * Wireless Wi-Fi network.
34 PP_NETWORKLIST_TYPE_WIFI
= 2,
37 * Cellular network (e.g. LTE).
39 PP_NETWORKLIST_TYPE_CELLULAR
= 3
43 * State of a network interface.
46 enum PP_NetworkList_State
{
48 * Network interface is down.
50 PP_NETWORKLIST_STATE_DOWN
= 0,
53 * Network interface is up.
55 PP_NETWORKLIST_STATE_UP
= 1
59 * The <code>PPB_NetworkList</code> is used to represent a list of
60 * network interfaces and their configuration. The content of the list
61 * is immutable. The current networks configuration can be received
62 * using the <code>PPB_NetworkMonitor</code> interface.
64 interface PPB_NetworkList
{
66 * Determines if the specified <code>resource</code> is a
67 * <code>NetworkList</code> object.
69 * @param[in] resource A <code>PP_Resource</code> resource.
71 * @return Returns <code>PP_TRUE</code> if <code>resource</code> is
72 * a <code>PPB_NetworkList</code>, <code>PP_FALSE</code>
75 PP_Bool IsNetworkList
([in] PP_Resource resource
);
78 * Gets number of interfaces in the list.
80 * @param[in] resource A <code>PP_Resource</code> corresponding to a
83 * @return Returns number of available network interfaces or 0 if
84 * the list has never been updated.
86 uint32_t GetCount
([in] PP_Resource resource
);
89 * Gets name of a network interface.
91 * @param[in] resource A <code>PP_Resource</code> corresponding to a
93 * @param[in] index Index of the network interface.
95 * @return Returns name for the network interface with the specified
98 PP_Var GetName
([in] PP_Resource resource
,
102 * Gets type of a network interface.
104 * @param[in] resource A <code>PP_Resource</code> corresponding to a
106 * @param[in] index Index of the network interface.
108 * @return Returns type of the network interface with the specified
109 * <code>index</code>.
111 [on_failure
=PP_NETWORKLIST_TYPE_UNKNOWN
]
112 PP_NetworkList_Type GetType
([in] PP_Resource resource
,
113 [in] uint32_t index
);
116 * Gets state of a network interface.
118 * @param[in] resource A <code>PP_Resource</code> corresponding to a
120 * @param[in] index Index of the network interface.
122 * @return Returns current state of the network interface with the
123 * specified <code>index</code>.
125 [on_failure
=PP_NETWORKLIST_STATE_DOWN
]
126 PP_NetworkList_State GetState
([in] PP_Resource resource
,
127 [in] uint32_t index
);
130 * Gets list of IP addresses for a network interface.
132 * @param[in] resource A <code>PP_Resource</code> corresponding to a
134 * @param[in] index Index of the network interface.
135 * @param[in] output An output array which will receive
136 * <code>PPB_NetAddress</code> resources on success. Please note that the
137 * ref count of those resources has already been increased by 1 for the
140 * @return An error code from <code>pp_errors.h</code>.
142 int32_t GetIpAddresses
([in] PP_Resource resource
,
144 [in] PP_ArrayOutput output
);
147 * Gets display name of a network interface.
149 * @param[in] resource A <code>PP_Resource</code> corresponding to a
151 * @param[in] index Index of the network interface.
153 * @return Returns display name for the network interface with the
154 * specified <code>index</code>.
156 PP_Var GetDisplayName
([in] PP_Resource resource
,
157 [in] uint32_t index
);
160 * Gets MTU (Maximum Transmission Unit) of a network interface.
162 * @param[in] resource A <code>PP_Resource</code> corresponding to a
164 * @param[in] index Index of the network interface.
166 * @return Returns MTU for the network interface with the specified
167 * <code>index</code> or 0 if MTU is unknown.
169 uint32_t GetMTU
([in] PP_Resource resource
,
170 [in] uint32_t index
);