Browse Source

Merge pull request #2331 from chinsyo/master

bump copyright year to 2019
pull/2358/head
Max Lv 6 years ago
committed by GitHub
parent
commit
71cc0fb362
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
37 changed files with 37 additions and 37 deletions
  1. 2
      src/acl.c
  2. 2
      src/acl.h
  3. 2
      src/aead.c
  4. 2
      src/aead.h
  5. 2
      src/android.c
  6. 2
      src/cache.c
  7. 2
      src/cache.h
  8. 2
      src/common.h
  9. 2
      src/crypto.c
  10. 2
      src/crypto.h
  11. 2
      src/jconf.c
  12. 2
      src/jconf.h
  13. 2
      src/local.c
  14. 2
      src/local.h
  15. 2
      src/manager.c
  16. 2
      src/manager.h
  17. 2
      src/netutils.c
  18. 2
      src/netutils.h
  19. 2
      src/plugin.c
  20. 2
      src/plugin.h
  21. 2
      src/ppbloom.c
  22. 2
      src/ppbloom.h
  23. 2
      src/redir.c
  24. 2
      src/redir.h
  25. 2
      src/server.c
  26. 2
      src/server.h
  27. 2
      src/shadowsocks.h
  28. 2
      src/stream.c
  29. 2
      src/stream.h
  30. 2
      src/tunnel.c
  31. 2
      src/tunnel.h
  32. 2
      src/udprelay.c
  33. 2
      src/udprelay.h
  34. 2
      src/utils.c
  35. 2
      src/utils.h
  36. 2
      src/winsock.c
  37. 2
      src/winsock.h

2
src/acl.c

@ -1,7 +1,7 @@
/*
* acl.c - Manage the ACL (Access Control List)
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/acl.h

@ -1,7 +1,7 @@
/*
* acl.h - Define the ACL interface
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/aead.c

@ -1,7 +1,7 @@
/*
* aead.c - Manage AEAD ciphers
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/aead.h

@ -1,7 +1,7 @@
/*
* aead.h - Define the AEAD interface
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/android.c

@ -1,7 +1,7 @@
/*
* android.c - Setup IPC for shadowsocks-android
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/cache.c

@ -1,7 +1,7 @@
/*
* cache.c - Manage the connection cache for UDPRELAY
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/cache.h

@ -1,7 +1,7 @@
/*
* cache.h - Define the cache manager interface
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/common.h

@ -1,7 +1,7 @@
/*
* common.h - Provide global definitions
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
* shadowsocks-libev is free software; you can redistribute it and/or modify

2
src/crypto.c

@ -1,7 +1,7 @@
/*
* crypto.c - Manage the global crypto
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/crypto.h

@ -1,7 +1,7 @@
/*
* crypto.h - Define the enryptor's interface
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/jconf.c

@ -1,7 +1,7 @@
/*
* jconf.c - Parse the JSON format config file
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
* shadowsocks-libev is free software; you can redistribute it and/or modify

2
src/jconf.h

@ -1,7 +1,7 @@
/*
* jconf.h - Define the config data structure
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
* shadowsocks-libev is free software; you can redistribute it and/or modify

2
src/local.c

@ -1,7 +1,7 @@
/*
* local.c - Setup a socks5 proxy through remote shadowsocks server
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/local.h

@ -1,7 +1,7 @@
/*
* local.h - Define the client's buffers and callbacks
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/manager.c

@ -1,7 +1,7 @@
/*
* server.c - Provide shadowsocks service
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/manager.h

@ -1,7 +1,7 @@
/*
* server.h - Define shadowsocks server's buffers and callbacks
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/netutils.c

@ -1,7 +1,7 @@
/*
* netutils.c - Network utilities
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/netutils.h

@ -1,7 +1,7 @@
/*
* netutils.h - Network utilities
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/plugin.c

@ -1,7 +1,7 @@
/*
* plugin.c - Manage plugins
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/plugin.h

@ -1,7 +1,7 @@
/*
* acl.h - Define the ACL interface
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/ppbloom.c

@ -1,7 +1,7 @@
/*
* ppbloom.c - Ping-Pong Bloom Filter for nonce reuse detection
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/ppbloom.h

@ -1,7 +1,7 @@
/*
* ppbloom.h - Define the Ping-Pong Bloom Filter interface
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/redir.c

@ -2,7 +2,7 @@
* redir.c - Provide a transparent TCP proxy through remote shadowsocks
* server
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/redir.h

@ -1,6 +1,6 @@
/* * redir.h - Define the redirector's buffers and callbacks
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/server.c

@ -1,7 +1,7 @@
/*
* server.c - Provide shadowsocks service
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/server.h

@ -1,7 +1,7 @@
/*
* server.h - Define shadowsocks server's buffers and callbacks
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/shadowsocks.h

@ -1,7 +1,7 @@
/*
* shadowsocks.h - Header files of library interfaces
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
* shadowsocks-libev is free software; you can redistribute it and/or modify

2
src/stream.c

@ -1,7 +1,7 @@
/*
* stream.c - Manage stream ciphers
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/stream.h

@ -1,7 +1,7 @@
/*
* encrypt.h - Define the enryptor's interface
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/tunnel.c

@ -1,7 +1,7 @@
/*
* tunnel.c - Setup a local port forwarding through remote shadowsocks server
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/tunnel.h

@ -1,7 +1,7 @@
/*
* tunnel.h - Define tunnel's buffers and callbacks
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/udprelay.c

@ -1,7 +1,7 @@
/*
* udprelay.c - Setup UDP relay for both client and server
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/udprelay.h

@ -1,7 +1,7 @@
/*
* udprelay.h - Define UDP relay's buffers and callbacks
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/utils.c

@ -1,7 +1,7 @@
/*
* utils.c - Misc utilities
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/utils.h

@ -1,7 +1,7 @@
/*
* utils.h - Misc utilities
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/winsock.c

@ -1,7 +1,7 @@
/*
* winsock.c - Windows socket compatibility layer
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

2
src/winsock.h

@ -1,7 +1,7 @@
/*
* winsock.h - Windows socket compatibility layer
*
* Copyright (C) 2013 - 2018, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2019, Max Lv <max.c.lv@gmail.com>
*
* This file is part of the shadowsocks-libev.
*

Loading…
Cancel
Save