Skip to content

Commit

Permalink
readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
nanwu committed Jun 8, 2017
1 parent f0498ff commit ec2171b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)


A SOCKS5 proxy client/server built on async IO model. Python3 asyncio library is leveraged for providing high level neworking API.
A SOCKS5 proxy client/server built on top of asyncio: the Python3 library which provides infrastructure for writing single-thread concurrent code and other high level networking APIs.

This project currently is in BETA version with proxy server fully functioning. More features will come soon.
## Installation
Expand Down
2 changes: 1 addition & 1 deletion server/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def start_serve(*args, **kwargs):

server = loop.run_until_complete(coro)
logger.info(
'Asock server starts listening at {}:{}'.format(
'Asocks server starts listening at {}:{}'.format(
kwargs['addr'], kwargs['port']))

try:
Expand Down

0 comments on commit ec2171b

Please sign in to comment.