Skip to content

Commit 2ee43f3

Browse files
committed
Fixed.
1 parent 4826588 commit 2ee43f3

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "wultiplexor"
3-
version = "0.0.2"
3+
version = "0.0.4"
44
description = "This tool is for forwarding TCP or SOCK connections from one computer to another using a central web socket server."
55
keywords = [
66
"proxy", "gate", "gateway", "websocket", "network", "networking", "websockets", "tcp", "socks",

src/wultiplexor/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# Wultiplexor is released under the MIT License (see LICENSE).
44

55

6-
VERSION = "0.0.2"
7-
PROTOCOL_VERSION = "0.0.2"
6+
VERSION = "0.0.4"
7+
PROTOCOL_VERSION = "0.0.4"

src/wultiplexor/whannel.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
import signal
99
import sys
1010
from argparse import ArgumentParser
11-
from asyncio import StreamReader, StreamWriter, Task, CancelledError, QueueFull, Server
11+
from asyncio import StreamReader, StreamWriter, Task, CancelledError, QueueFull
12+
from asyncio.base_events import Server
1213
from contextlib import suppress
1314
from typing import Optional, Awaitable, Callable, List, Tuple
1415

0 commit comments

Comments
 (0)