forked from clowwindy/shadowsocks-libev
-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
41 changed files
with
53 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
shadowsocks-libev (3.1.3-1) unstable; urgency=medium | ||
|
||
* Fix a bug in UDP relay. | ||
|
||
-- Max Lv <[email protected]> Mon, 15 Jan 2018 17:19:31 -0800 | ||
|
||
shadowsocks-libev (3.1.2-1) unstable; urgency=medium | ||
|
||
* Fix a bug in DNS resolver. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ It is a port of [Shadowsocks](https://github.com/shadowsocks/shadowsocks) | |
created by [@clowwindy](https://github.com/clowwindy), and maintained by | ||
[@madeye](https://github.com/madeye) and [@linusyang](https://github.com/linusyang). | ||
|
||
Current version: 3.1.2 | [Changelog](debian/changelog) | ||
Current version: 3.1.3 | [Changelog](debian/changelog) | ||
|
||
Travis CI: [![Travis CI](https://travis-ci.org/shadowsocks/shadowsocks-libev.svg?branch=master)](https://travis-ci.org/shadowsocks/shadowsocks-libev) | ||
|
||
|
@@ -491,7 +491,7 @@ setting up your server's firewall rules to limit connections from each user: | |
|
||
``` | ||
Copyright: 2013-2015, Clow Windy <[email protected]> | ||
2013-2017, Max Lv <[email protected]> | ||
2013-2018, Max Lv <[email protected]> | ||
2014, Linus Yang <[email protected]> | ||
This program is free software: you can redistribute it and/or modify | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ dnl -*- Autoconf -*- | |
dnl Process this file with autoconf to produce a configure script. | ||
|
||
AC_PREREQ([2.67]) | ||
AC_INIT([shadowsocks-libev], [3.1.2], [[email protected]]) | ||
AC_INIT([shadowsocks-libev], [3.1.3], [[email protected]]) | ||
AC_CONFIG_SRCDIR([src/crypto.c]) | ||
AC_CONFIG_HEADERS([config.h]) | ||
AC_CONFIG_AUX_DIR(auto) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
shadowsocks-libev (3.1.3-1) unstable; urgency=medium | ||
|
||
* Fix a bug in UDP relay. | ||
|
||
-- Max Lv <[email protected]> Mon, 15 Jan 2018 17:19:31 -0800 | ||
|
||
shadowsocks-libev (3.1.2-1) unstable; urgency=medium | ||
|
||
* Fix a bug in DNS resolver. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
FROM alpine | ||
MAINTAINER kev <[email protected]> | ||
|
||
ARG SS_VER=3.1.2 | ||
ARG SS_VER=3.1.3 | ||
ARG SS_URL=https://github.com/shadowsocks/shadowsocks-libev/releases/download/v$SS_VER/shadowsocks-libev-$SS_VER.tar.gz | ||
|
||
ENV SERVER_ADDR 0.0.0.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* acl.c - Manage the ACL (Access Control List) | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* acl.h - Define the ACL interface | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* aead.c - Manage AEAD ciphers | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* aead.h - Define the AEAD interface | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* android.c - Setup IPC for shadowsocks-android | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* cache.c - Manage the connection cache for UDPRELAY | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* cache.h - Define the cache manager interface | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* common.h - Provide global definitions | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* shadowsocks-libev is free software; you can redistribute it and/or modify | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* crypto.c - Manage the global crypto | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* crypto.h - Define the enryptor's interface | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* jconf.c - Parse the JSON format config file | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* shadowsocks-libev is free software; you can redistribute it and/or modify | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* jconf.h - Define the config data structure | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* shadowsocks-libev is free software; you can redistribute it and/or modify | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* local.c - Setup a socks5 proxy through remote shadowsocks server | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* local.h - Define the client's buffers and callbacks | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* server.c - Provide shadowsocks service | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* server.h - Define shadowsocks server's buffers and callbacks | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* netutils.c - Network utilities | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* netutils.h - Network utilities | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* plugin.c - Manage plugins | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* acl.h - Define the ACL interface | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* ppbloom.c - Ping-Pong Bloom Filter for nonce reuse detection | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* ppbloom.h - Define the Ping-Pong Bloom Filter interface | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* redir.c - Provide a transparent TCP proxy through remote shadowsocks | ||
* server | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* * redir.h - Define the redirector's buffers and callbacks | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* server.c - Provide shadowsocks service | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* server.h - Define shadowsocks server's buffers and callbacks | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* shadowsocks.h - Header files of library interfaces | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* shadowsocks-libev is free software; you can redistribute it and/or modify | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* stream.c - Manage stream ciphers | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* encrypt.h - Define the enryptor's interface | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* tunnel.c - Setup a local port forwarding through remote shadowsocks server | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* tunnel.h - Define tunnel's buffers and callbacks | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* udprelay.c - Setup UDP relay for both client and server | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* udprelay.h - Define UDP relay's buffers and callbacks | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* utils.c - Misc utilities | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* utils.h - Misc utilities | ||
* | ||
* Copyright (C) 2013 - 2017, Max Lv <[email protected]> | ||
* Copyright (C) 2013 - 2018, Max Lv <[email protected]> | ||
* | ||
* This file is part of the shadowsocks-libev. | ||
* | ||
|