Max Lv
bc77b6189c
Merge pull request #2694 from wangxinhe2006/master
Add `xchacha20-ietf-poly1305` to docs and completions
4 years ago
Max Lv
236c98d6d9
Merge pull request #2685 from JamisHoo/master
Also apply LIB_ONLY for dynamic library, fix #2443
4 years ago
汪心禾
2ae8006ee3
*Shadowsocks-libev* accepts 19 different ciphers
4 years ago
汪心禾
2cc92827e5
`xchacha20-ietf-poly1305` doc
4 years ago
汪心禾
1e7bb4512c
`xchacha20-ietf-poly1305` completion
4 years ago
Max Lv
aa9fe8cceb
Fix #2692
4 years ago
Max Lv
401d323480
Merge pull request #2691 from rogers0/PR/fix_debian_rules
debian/rules: Fix #2675
4 years ago
Roger Shimizu
5f947a8466
debian/rules: Fix #2675
Regression caused by commit [0d96da4
].
4 years ago
Max Lv
9ea9aa0368
Merge pull request #2690 from Loyalsoldier/update-telegram-CIDR
Update telegram CIDR
4 years ago
loyalsoldier
4d33f01042
Update telegram CIDR
Update telegram CIDR according to https://core.telegram.org/resources/cidr.txt
4 years ago
Max Lv
1d78159613
Merge pull request #2688 from Loyalsoldier/update-acl
Update ACL files
4 years ago
loyalsoldier
1e5d55777d
Update gfwlist on 2020.04.18
4 years ago
loyalsoldier
d258132414
Update local IPs
4 years ago
loyalsoldier
1cce832bef
Update China Mainland IPv4
Update China Mainland IPv4 according to @17mon/china_ip_list
4 years ago
Max Lv
33a1932023
Fix #2687
4 years ago
Max Lv
870f9d914d
Merge pull request #2686 from shadowsocks/rm-fedora-copr-librehat
Remove the unmaintained Fedora COPR section
4 years ago
Symeon Huang
4baff35e25
Remove the unmaintained Fedora COPR section
I'm no longer maintaining the packages for Fedora and RHEL. This PR seeks to remove this section to avoid confusions.
4 years ago
Jamis Hoo
bbb2849b60
Also apply LIB_ONLY for shared library, fix #2443
4 years ago
Max Lv
cc658e49cb
Merge pull request #2674 from cyber386/work
Update public libraries
4 years ago
cyber368
bab75a877a
Update public libraries
4 years ago
Max Lv
34f1bbed5b
Merge pull request #2673 from JamisHoo/master
cmake: fix build issues when this project is built as dependency of other CMake projects
4 years ago
Max Lv
2cdcb41fa8
Merge pull request #2672 from rogers0/PR/sync_debian
Sync debian/ folder with debian version 3.3.4+ds-3
4 years ago
Jamis Hoo
138186b3db
Add include_directories property for shared_libraries
4 years ago
Jamis Hoo
0aa55a29e5
Replace CMAKE_XXX_DIR with PROJECT_XXX_DIR, so that this project can be used in an enclosing project
4 years ago
Roger Shimizu
0d96da4471
Sync debian/ folder with debian version 3.3.4+ds-3
4 years ago
Max Lv
b9ce095ee7
Merge pull request #2666 from imMMX/add-dockerfile-timezone
Add Dockerfile timezone, Update readme.
4 years ago
mmx
57e0c9f924
Update Dockerfile set default timezone to UTC.
4 years ago
mmx
b6ddbbe0b0
Add Dockerfile timezone, Update readme.
4 years ago
Max Lv
f34b362af0
Merge pull request #2659 from ideal/master
Fix a tiny memory leak
4 years ago
ideal
af722a4b92
Fix a tiny memory leak
4 years ago
Max Lv
cafdd77b3d
Update README.md
4 years ago
Max Lv
6f7a6fd7e3
Merge pull request #2628 from Mygod/kill-sniparser
Remove sniparser
4 years ago
Max Lv
64d3235c67
Fix #2620
4 years ago
Max Lv
69b79e5b24
Merge pull request #2631 from shadowsocks/revert-2626-snapd-classic
Revert "Use classic mode to install shadowsocks-libev"
4 years ago
Max Lv
33976557d6
Revert "Use classic mode to install shadowsocks-libev"
4 years ago
Max Lv
8c251b2bc5
Fix build
4 years ago
Mygod
1c818ebca7
Fix build
4 years ago
Mygod
355adddff1
Remove unused is_remote_dns option
4 years ago
Mygod
301fea635b
Remove sniparser
4 years ago
Max Lv
bb12209941
Merge pull request #2626 from shadowsocks/snapd-classic
Use classic mode to install shadowsocks-libev
4 years ago
Mygod
5c16299c1a
Use classic mode to install shadowsocks-libev
This can prevent `Too many open files` error from happening due to sandboxing.
4 years ago
Max Lv
ac61025066
Merge pull request #2623 from babarosaM33/master
udprelay: exclude udp remote_recv_sendto buff full
4 years ago
babarosaM33
81bbd98d8b
udprelay: exclude udp remote_recv_sendto buff full
before:
udp send buff full would not reset timeout trigger
after:
fix it
4 years ago
Max Lv
f5c140dc1f
Merge pull request #2619 from babarosaM33/master
updrelay: cleanup
4 years ago
babarosaM33
a5111fe32f
updrelay: cleanup
4 years ago
Max Lv
375257954e
Merge pull request #2618 from imba-tjd/patch-1
readme(docker): remove "--fast-open"
4 years ago
谭九鼎
21e3224ff1
readme(docker): remove "--fast-open"
4 years ago
Max Lv
a0ef1a56f7
Merge pull request #2611 from hosiet/patch-1
tests/test.py: Make script compatible with python3
4 years ago
Boyuan Yang
defa4f8dcf
tests/test.py: Make script compatible with python3
Currently the test script assumes the returned web page is always encoded in UTF-8, which might not be the case. It is likely that the real encoding is `ISO-8859-1` and that running the script under python3 will raise error:
```
<
{ [11931 bytes data]
100 11923 0 11923 0 0 184k 0 --:--:-- --:--:-- --:--:-- 187k
Traceback (most recent call last):
File "tests/test.py", line 106, in <module>
line = str(line, 'utf8')
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xa0 in position 1105: invalid start byte
```
This pull request makes no assumption on the returned data and send the raw output to stderr as `bytes`. This should allow the test script to finish successfully when `tests/test.py` is run by python3.
4 years ago
Max Lv
0686909bb0
Merge pull request #2610 from babarosaM33/bloom_reset
ppbloom: save free() and subsequent init() overhead
4 years ago