shadowsocks-rust/shadowsocks-rust-client.service
Hillwood Yang d4ed296189 - Update version to 1.20.4
* Updated rustls to v0.23 with ring backend
  * local-redir, server: Better approach to check current platform IP stack
    capabilities like Go (IPv4, IPv6, IPv4-mapped-IPv6 supports)
  * Explicitly enable dual-stack if listen addresses (server, local_address)
    are IPv4-mapped-IPv6, by setting IPV6_V6ONLY=0
  * PingBalancer check Firefox portal allowing 200 HTTP status
  * Ping Balancer scores replaced standard deviation with median absolute
    deviation, which should help focusing less on outlying observations in
    latency samples
  * local: Allow configuring SOCKS5 UDP_ASSOCIATE address
  * ProxyServerStream::from_stream made public
  * Fix bugs

OBS-URL: https://build.opensuse.org/package/show/server:proxy/shadowsocks-rust?expand=0&rev=29
2024-09-13 11:54:38 +00:00

29 lines
745 B
Desktop File

[Unit]
Description=Daemon to start Shadowsocks-rust-client
Wants=network-online.target
After=network.target
[Service]
# added automatically, for details please see
# https://en.opensuse.org/openSUSE:Security_Features#Systemd_hardening_effort
ProtectSystem=full
ProtectHome=true
PrivateDevices=true
ProtectHostname=true
ProtectClock=true
ProtectKernelTunables=true
ProtectKernelModules=true
ProtectKernelLogs=true
ProtectControlGroups=true
RestrictRealtime=true
# end of automatic additions
Type=forking
PIDFile=/var/run/shadowsocks-rust-client.pid
ExecStart=/usr/bin/sslocal --log-without-time -c /etc/shadowsocks/shadowsocks-rust.json --tcp-fast-open
Restart=on-failure
User=shadowsocks
Group=shadowsocks
[Install]
WantedBy=multi-user.target