OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2017 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. | |
4 | |
5 module net.interfaces; | |
6 | |
7 // Mirror of net::IPAddress. | |
8 struct IPAddress { | |
9 // IP address as a numeric value from most to least significant byte. | |
10 // Will be of length 4 for IPv4 addresses and 16 for IPv6. | |
11 array<uint8> address; | |
12 }; | |
OLD | NEW |