Skip to content

Commit 5caafff

Browse files
committed
Don't use unicode.
1 parent 069f2fb commit 5caafff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ pip install libasyncproxy/
5454

5555
## Usage
5656

57-
### asyncproxy `AsyncProxy2FD` Example
57+
### asyncproxy -- `AsyncProxy2FD` Example
5858

5959
This example shows how to set up a bidirectional relay between two socket pairs using `AsyncProxy2FD`. Data sent on one end is forwarded to the other, and vice versa.
6060

@@ -94,7 +94,7 @@ for sock in (client_socket, proxy_in, proxy_out, server_socket):
9494
sock.close()
9595
```
9696

97-
### asyncproxy `TCPProxy` Example
97+
### asyncproxy -- `TCPProxy` Example
9898

9999
This example shows how to set up a TCP proxy accepting connections on
100100
`localhost:8080` and forwarding it to `www.google.com:80`.
@@ -124,7 +124,7 @@ for _ in (1, 2):
124124
proxy.shutdown()
125125
```
126126

127-
### asyncproxy `AdvancedAsyncProxy2FD` Example
127+
### asyncproxy -- Advanced `AsyncProxy2FD` Example
128128

129129
This example shows how to subclass `AsyncProxy2FD` to inspect and modify data in transit using custom `in2out` and `out2in` hooks.
130130

0 commit comments

Comments
 (0)