This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
youys
/
shadowsocks-windows
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
67
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
better way to kill privoxy
tags/3.2
Gang Zhuo
9 years ago
parent
4325b7f6f9
commit
3da00178de
1 changed files
with
7 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-2
shadowsocks-csharp/Controller/Service/PolipoRunner.cs
+ 7
- 2
shadowsocks-csharp/Controller/Service/PolipoRunner.cs
View File
@@ -49,8 +49,13 @@ namespace Shadowsocks.Controller
{
try
{
p.Kill();
p.WaitForExit();
p.CloseMainWindow();
p.WaitForExit(100);
if (!p.HasExited)
{
p.Kill();
p.WaitForExit();
}
}
catch (Exception e)
{
Write
Preview
Loading…
Cancel
Save