Browse Source

Roll up year to 2016

pull/612/head
Kim 9 years ago
committed by Max Lv
parent
commit
08f873adc7
28 changed files with 28 additions and 28 deletions
  1. 2
      README.md
  2. 2
      src/acl.c
  3. 2
      src/acl.h
  4. 2
      src/android.c
  5. 2
      src/cache.c
  6. 2
      src/cache.h
  7. 2
      src/common.h
  8. 2
      src/encrypt.c
  9. 2
      src/encrypt.h
  10. 2
      src/jconf.c
  11. 2
      src/jconf.h
  12. 2
      src/local.c
  13. 2
      src/local.h
  14. 2
      src/manager.c
  15. 2
      src/manager.h
  16. 2
      src/netutils.c
  17. 2
      src/netutils.h
  18. 2
      src/redir.c
  19. 2
      src/redir.h
  20. 2
      src/server.c
  21. 2
      src/server.h
  22. 2
      src/shadowsocks.h
  23. 2
      src/tunnel.c
  24. 2
      src/tunnel.h
  25. 2
      src/udprelay.c
  26. 2
      src/udprelay.h
  27. 2
      src/utils.c
  28. 2
      src/utils.h

2
README.md

@ -461,7 +461,7 @@ setting up your server's firewall rules to limit connections from each user:
## License ## License
Copyright (C) 2015 Max Lv <max.c.lv@gmail.com>
Copyright (C) 2016 Max Lv <max.c.lv@gmail.com>
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

2
src/acl.c

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

2
src/acl.h

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

2
src/android.c

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

2
src/cache.c

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

2
src/cache.h

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

2
src/common.h

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

2
src/encrypt.c

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

2
src/encrypt.h

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

2
src/jconf.c

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

2
src/jconf.h

@ -1,7 +1,7 @@
/* /*
* server.c - Define the config data structure * server.c - Define the config data structure
* *
* Copyright (C) 2013 - 2015, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2016, Max Lv <max.c.lv@gmail.com>
* *
* This file is part of the shadowsocks-libev. * This file is part of the shadowsocks-libev.
* shadowsocks-libev is free software; you can redistribute it and/or modify * 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 * local.c - Setup a socks5 proxy through remote shadowsocks server
* *
* Copyright (C) 2013 - 2015, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2016, Max Lv <max.c.lv@gmail.com>
* *
* This file is part of the shadowsocks-libev. * This file is part of the shadowsocks-libev.
* *

2
src/local.h

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

2
src/manager.c

@ -1,7 +1,7 @@
/* /*
* server.c - Provide shadowsocks service * server.c - Provide shadowsocks service
* *
* Copyright (C) 2013 - 2015, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2016, Max Lv <max.c.lv@gmail.com>
* *
* This file is part of the shadowsocks-libev. * 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 * server.h - Define shadowsocks server's buffers and callbacks
* *
* Copyright (C) 2013 - 2015, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2016, Max Lv <max.c.lv@gmail.com>
* *
* This file is part of the shadowsocks-libev. * This file is part of the shadowsocks-libev.
* *

2
src/netutils.c

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

2
src/netutils.h

@ -1,7 +1,7 @@
/* /*
* netutils.h - Network utilities * netutils.h - Network utilities
* *
* Copyright (C) 2013 - 2015, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2016, Max Lv <max.c.lv@gmail.com>
* *
* This file is part of the shadowsocks-libev. * 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 * redir.c - Provide a transparent TCP proxy through remote shadowsocks
* server * server
* *
* Copyright (C) 2013 - 2015, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2016, Max Lv <max.c.lv@gmail.com>
* *
* This file is part of the shadowsocks-libev. * This file is part of the shadowsocks-libev.
* *

2
src/redir.h

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

2
src/server.c

@ -1,7 +1,7 @@
/* /*
* server.c - Provide shadowsocks service * server.c - Provide shadowsocks service
* *
* Copyright (C) 2013 - 2015, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2016, Max Lv <max.c.lv@gmail.com>
* *
* This file is part of the shadowsocks-libev. * 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 * server.h - Define shadowsocks server's buffers and callbacks
* *
* Copyright (C) 2013 - 2015, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2016, Max Lv <max.c.lv@gmail.com>
* *
* This file is part of the shadowsocks-libev. * This file is part of the shadowsocks-libev.
* *

2
src/shadowsocks.h

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

2
src/tunnel.c

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

2
src/tunnel.h

@ -1,7 +1,7 @@
/* /*
* tunnel.h - Define tunnel's buffers and callbacks * tunnel.h - Define tunnel's buffers and callbacks
* *
* Copyright (C) 2013 - 2015, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2016, Max Lv <max.c.lv@gmail.com>
* *
* This file is part of the shadowsocks-libev. * 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 * udprelay.c - Setup UDP relay for both client and server
* *
* Copyright (C) 2013 - 2015, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2016, Max Lv <max.c.lv@gmail.com>
* *
* This file is part of the shadowsocks-libev. * 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 * udprelay.h - Define UDP relay's buffers and callbacks
* *
* Copyright (C) 2013 - 2015, Max Lv <max.c.lv@gmail.com>
* Copyright (C) 2013 - 2016, Max Lv <max.c.lv@gmail.com>
* *
* This file is part of the shadowsocks-libev. * This file is part of the shadowsocks-libev.
* *

2
src/utils.c

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

2
src/utils.h

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

Loading…
Cancel
Save