blob: c0942975e25701e2ee8d8b757bf901621acb1012 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
module blink.mojom;
// Represents AddressSpace from the "CORS and RFC1918" spec. The ordering is
// important, as it's used to determine whether preflights are required, as per
// https://wicg.github.io/cors-rfc1918/#framework
enum IPAddressSpace {
kLocal, // loopback, link local
kPrivate, // Reserved by RFC1918
kPublic, // Everything else
};