Skip to content

Commit d0e8106

Browse files
committed
Update copyright year.
1 parent bb67daf commit d0e8106

File tree

16 files changed

+42
-39
lines changed

16 files changed

+42
-39
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,9 @@ WinDivert 2.0.0-rc
256256
* WINDIVERT_SHUTDOWN_SEND: Disable the sending of new packets.
257257
* WINDIVERT_SHUTDOWN_BOTH: Equivalent to
258258
(WINDIVERT_SHUTDOWN_RECV | WINDIVERT_SHUTDOWN_SEND).
259+
- Add new "read-only" WinDivert parameters:
260+
* WINDIVERT_PARAM_VERSION_MAJOR: Driver version (major).
261+
* WINDIVERT_PARAM_VERSION_MINOR: Driver version (minor).
259262
- Add a new WinDivertHelperHashPacket() helper function that calculates
260263
a 64bit hash value of a packet.
261264
- Add new WinDivertHelperFormatIPv4Address() and

dll/windivert_hash.c

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* windivert_hash.c
3-
* (C) 2018, all rights reserved,
3+
* (C) 2019, all rights reserved,
44
*
55
* This file is part of WinDivert.
66
*
@@ -31,33 +31,33 @@
3131
* with this program; if not, write to the Free Software Foundation, Inc., 51
3232
* Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
3333
*
34-
* xxHash - Fast Hash algorithm
35-
* Copyright (C) 2012-2016, Yann Collet
34+
* xxHash - Fast Hash algorithm
35+
* Copyright (C) 2012-2016, Yann Collet
3636
*
37-
* BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
37+
* BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
3838
*
39-
* Redistribution and use in source and binary forms, with or without
40-
* modification, are permitted provided that the following conditions are
41-
* met:
39+
* Redistribution and use in source and binary forms, with or without
40+
* modification, are permitted provided that the following conditions are
41+
* met:
4242
*
43-
* * Redistributions of source code must retain the above copyright
44-
* notice, this list of conditions and the following disclaimer.
45-
* * Redistributions in binary form must reproduce the above
46-
* copyright notice, this list of conditions and the following disclaimer
47-
* in the documentation and/or other materials provided with the
48-
* distribution.
43+
* * Redistributions of source code must retain the above copyright
44+
* notice, this list of conditions and the following disclaimer.
45+
* * Redistributions in binary form must reproduce the above
46+
* copyright notice, this list of conditions and the following disclaimer
47+
* in the documentation and/or other materials provided with the
48+
* distribution.
4949
*
50-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
51-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52-
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
53-
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
54-
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55-
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
56-
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57-
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58-
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59-
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
60-
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
50+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
51+
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52+
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
53+
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
54+
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
56+
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57+
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58+
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
60+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
6161
*/
6262

6363
/*

dll/windivert_helper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* windivert_helper.c
3-
* (C) 2018, all rights reserved,
3+
* (C) 2019, all rights reserved,
44
*
55
* This file is part of WinDivert.
66
*

dll/windivert_shared.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* windivert_shared.c
3-
* (C) 2018, all rights reserved,
3+
* (C) 2019, all rights reserved,
44
*
55
* This file is part of WinDivert.
66
*

examples/flowtrack/flowtrack.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* flowtrack.c
3-
* (C) 2018, all rights reserved,
3+
* (C) 2019, all rights reserved,
44
*
55
* This file is part of WinDivert.
66
*

examples/netfilter/netfilter.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* netfilter.c
3-
* (C) 2018, all rights reserved,
3+
* (C) 2019, all rights reserved,
44
*
55
* This file is part of WinDivert.
66
*

examples/passthru/passthru.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* passthru.c
3-
* (C) 2018, all rights reserved,
3+
* (C) 2019, all rights reserved,
44
*
55
* This file is part of WinDivert.
66
*

examples/socketdump/socketdump.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* socketdump.c
3-
* (C) 2018, all rights reserved,
3+
* (C) 2019, all rights reserved,
44
*
55
* This file is part of WinDivert.
66
*

examples/webfilter/webfilter.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* webfilter.c
3-
* (C) 2018, all rights reserved,
3+
* (C) 2019, all rights reserved,
44
*
55
* This file is part of WinDivert.
66
*

mingw-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
#
33
# mingw-build.sh
4-
# (C) 2018, all rights reserved,
4+
# (C) 2019, all rights reserved,
55
#
66
# This file is part of WinDivert.
77
#

0 commit comments

Comments
 (0)