libQtShadowsocks icon indicating copy to clipboard operation
libQtShadowsocks copied to clipboard

A lightweight and ultra-fast shadowsocks library written in C++14 with Qt framework

Results 30 libQtShadowsocks issues
Sort by recently updated
recently updated
newest added

Hi, I tried to build libqtshadowsocks on Mageia Cauldron against Botan 2.11.0 but it fails to build due to: > /home/iurt/rpmbuild/BUILD/libQtShadowsocks-2.1.0/lib/crypto/cipher.cpp: In constructor 'QSS::Cipher::Cipher(const string&, std::__cxx11::string, std::__cxx11::string, bool)': /home/iurt/rpmbuild/BUILD/libQtShadowsocks-2.1.0/lib/crypto/cipher.cpp:94:25: error:...

**Platform:** Ubuntu18.04 on arm64 The former instructions of the building procedure is **OKAY** for me: ``` $ mkdir build && cd build $ cmake .. -DCMAKE_INSTALL_PREFIX=/usr ``` But then when...

我在 tcprelay.cpp 中发现了以下代码 ```C++ void TcpRelay::close() { if (stage == DESTROYED) { return; } local->close(); remote->close(); stage = DESTROYED; emit finished(); } ``` 看下Qt文档对`close()`的描述 > void QAbstractSocket::close() > Reimplemented from...

i got errors belowing now . woking ok before . what happened to me? 01-25T12:46:12.447 WARN: Remote socket: Unknown error 01-25T12:46:12.665 INFO: Connecting 208.67.220.220:53 from x.x.x.x 01-25T12:46:12.665 WARN: Remote socket:...

Or please at lease wrote a simple guidance for how to build it manually.

``` zelongg@zelongg-ThinkPad-T430:/media/zelongg/DATA/libQtShadowsocks/build$ cmake .. -DCMAKE_INSTALL_PREFIX=/usr -- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE) -- Checking for one of the modules 'botan-2>=2.3.0;botan-1.10' CMake Error at /usr/share/cmake-3.10/Modules/FindPkgConfig.cmake:645 (message): None of the required 'botan-2>=2.3.0;botan-1.10'...

How to support "none" cliper method in libqtshadowsocks?

add support for xchacha20-ietf-poly1305 set nonce to 24 for ChaCha20Poly1305 in botan-2

I'm using an environment which I have two NICs, NIC0 and NIC1, and I want to connect to ss-server via NIC0 and let ss-server reach the internet through NIC1, without...

enhancement
help wanted