authorgravatar for kenta@lithdew.netlithdew <kenta@lithdew.net> 2021-05-02 18:54:35+09:00
committergravatar for kenta@lithdew.netlithdew <kenta@lithdew.net> 2021-05-03 14:49:10+09:00
logaf057c888b99316808165926847577869dae32e8
treed7532d203d9fcb41dedb09e99f6882c2af3d1d14
parent5c4fbc40140ec6e30aa2954c13a5799b40e7afe4

x/net/ip: add copyright header


1 files changed, 7 insertions(+), 0 deletions(-)

lib/std/x/net/ip.zig+7
......@@ -1,9 +1,16 @@
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2015-2021 Zig Contributors
3// This file is part of [zig](https://ziglang.org/), which is MIT licensed.
4// The MIT license requires this copyright notice to be included in all copies
5// and substantial portions of the software.
6
17const std = @import("../../std.zig");
28
39const IPv4 = std.x.os.IPv4;
410const IPv6 = std.x.os.IPv6;
511const Socket = std.x.os.Socket;
612
13/// A generic IP abstraction.
714const ip = @This();
815
916/// A union of all eligible types of IP addresses.