mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 17:12:13 -06:00
v1.1.12
This commit is contained in:
parent
c9cac83d09
commit
ded0567cbf
|
@ -1,8 +1,8 @@
|
|||
# coding: utf-8
|
||||
|
||||
VERSION = (1, 1, 11)
|
||||
VERSION = (1, 1, 12)
|
||||
CODENAME = "opus"
|
||||
BUILD_DT = (2022, 1, 14)
|
||||
BUILD_DT = (2022, 1, 18)
|
||||
|
||||
S_VERSION = ".".join(map(str, VERSION))
|
||||
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
|
||||
|
|
|
@ -109,6 +109,9 @@ class VSock(object):
|
|||
self._reply += buf
|
||||
return len(buf)
|
||||
|
||||
def getsockname(self):
|
||||
return ("a", 1)
|
||||
|
||||
|
||||
class VHttpSrv(object):
|
||||
def __init__(self):
|
||||
|
|
Loading…
Reference in a new issue