Skip to content

Commit

Permalink
x/net/ip: add copyright header
Browse files Browse the repository at this point in the history
  • Loading branch information
lithdew committed May 2, 2021
1 parent 981dbc3 commit b2b9802
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lib/std/x/net/ip.zig
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
// SPDX-License-Identifier: MIT
// Copyright (c) 2015-2021 Zig Contributors
// This file is part of [zig](https://ziglang.org/), which is MIT licensed.
// The MIT license requires this copyright notice to be included in all copies
// and substantial portions of the software.

const std = @import("../../std.zig");

const IPv4 = std.x.os.IPv4;
const IPv6 = std.x.os.IPv6;
const Socket = std.x.os.Socket;

/// A generic IP abstraction.
const ip = @This();

/// A union of all eligible types of IP addresses.
Expand Down

0 comments on commit b2b9802

Please sign in to comment.