##// END OF EJS Templates
rust-status: add missing variants to `Dispatch` enum...
rust-status: add missing variants to `Dispatch` enum Differential Revision: https://phab.mercurial-scm.org/D8088

File last commit:

r44937:9d2b2df2 default
r45013:61709b84 default
Show More
wireprototypes.py
454 lines | 13.4 KiB | text/x-python | PythonLexer
Gregory Szorc
wireprototypes: move wire protocol response types to new module...
r36090 # Copyright 2018 Gregory Szorc <gregory.szorc@gmail.com>
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
from __future__ import absolute_import
Gregory Szorc
wireproto: move value encoding functions to wireprototypes (API)...
r37630 from .node import (
bin,
hex,
)
Gregory Szorc
wireproto: move supportedcompengines out of wireproto...
r37801 from .i18n import _
Gregory Szorc
py3: manually import getattr where it is needed...
r43359 from .pycompat import getattr
Augie Fackler
formatting: blacken the codebase...
r43346 from .thirdparty import attr
Gregory Szorc
wireproto: move supportedcompengines out of wireproto...
r37801 from . import (
error,
util,
)
Augie Fackler
formatting: blacken the codebase...
r43346 from .interfaces import util as interfaceutil
from .utils import compression
Gregory Szorc
wireprototypes: move baseprotocolhandler from wireprotoserver...
r36389
Gregory Szorc
wireprotoserver: move SSHV1 and SSHV2 constants to wireprototypes...
r36553 # Names of the SSH protocol implementations.
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 SSHV1 = b'ssh-v1'
Gregory Szorc
wireproto: support /api/* URL space for exposing APIs...
r37064 # These are advertised over the wire. Increment the counters at the end
Gregory Szorc
wireprotoserver: move SSHV1 and SSHV2 constants to wireprototypes...
r36553 # to reflect BC breakages.
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 SSHV2 = b'exp-ssh-v2-0003'
HTTP_WIREPROTO_V2 = b'exp-http-v2-0003'
Gregory Szorc
wireprotoserver: move SSHV1 and SSHV2 constants to wireprototypes...
r36553
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 NARROWCAP = b'exp-narrow-1'
ELLIPSESCAP1 = b'exp-ellipses-1'
ELLIPSESCAP = b'exp-ellipses-2'
Pulkit Goyal
narrow: use narrow_widen wireproto command to widen in case of ellipses...
r42605 SUPPORTED_ELLIPSESCAP = (ELLIPSESCAP1, ELLIPSESCAP)
Pulkit Goyal
wireprotoserver: move narrow capabilities to wireprototypes.py...
r40110
Gregory Szorc
wireproto: allow wire protocol commands to declare transport support...
r36627 # All available wire protocol transports.
TRANSPORTS = {
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 SSHV1: {b'transport': b'ssh', b'version': 1,},
Gregory Szorc
wireproto: allow wire protocol commands to declare transport support...
r36627 SSHV2: {
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'transport': b'ssh',
Gregory Szorc
wireproto: mark SSHv2 as a version 1 transport...
r37310 # TODO mark as version 2 once all commands are implemented.
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'version': 1,
Gregory Szorc
wireproto: allow wire protocol commands to declare transport support...
r36627 },
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'http-v1': {b'transport': b'http', b'version': 1,},
HTTP_WIREPROTO_V2: {b'transport': b'http', b'version': 2,},
Gregory Szorc
wireproto: allow wire protocol commands to declare transport support...
r36627 }
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireproto: introduce type for raw byte responses (API)...
r36091 class bytesresponse(object):
"""A wire protocol response consisting of raw bytes."""
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireproto: introduce type for raw byte responses (API)...
r36091 def __init__(self, data):
self.data = data
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireprototypes: move wire protocol response types to new module...
r36090 class ooberror(object):
"""wireproto reply: failure of a batch of operation
Something failed during a batch call. The error message is stored in
`self.message`.
"""
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireprototypes: move wire protocol response types to new module...
r36090 def __init__(self, message):
self.message = message
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireprototypes: move wire protocol response types to new module...
r36090 class pushres(object):
"""wireproto reply: success with simple integer return
The call was successful and returned an integer contained in `self.res`.
"""
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireprototypes: move wire protocol response types to new module...
r36090 def __init__(self, res, output):
self.res = res
self.output = output
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireprototypes: move wire protocol response types to new module...
r36090 class pusherr(object):
"""wireproto reply: failure
The call failed. The `self.res` attribute contains the error message.
"""
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireprototypes: move wire protocol response types to new module...
r36090 def __init__(self, res, output):
self.res = res
self.output = output
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireprototypes: move wire protocol response types to new module...
r36090 class streamres(object):
"""wireproto reply: binary stream
The call was successful and the result is a stream.
Accepts a generator containing chunks of data to be sent to the client.
``prefer_uncompressed`` indicates that the data is expected to be
uncompressable and that the stream should therefore use the ``none``
engine.
"""
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireprototypes: move wire protocol response types to new module...
r36090 def __init__(self, gen=None, prefer_uncompressed=False):
self.gen = gen
self.prefer_uncompressed = prefer_uncompressed
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireprototypes: move wire protocol response types to new module...
r36090 class streamreslegacy(object):
"""wireproto reply: uncompressed binary stream
The call was successful and the result is a stream.
Accepts a generator containing chunks of data to be sent to the client.
Like ``streamres``, but sends an uncompressed data for "version 1" clients
using the application/mercurial-0.1 media type.
"""
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireprototypes: move wire protocol response types to new module...
r36090 def __init__(self, gen=None):
self.gen = gen
Gregory Szorc
wireprototypes: move baseprotocolhandler from wireprotoserver...
r36389
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireproto: move value encoding functions to wireprototypes (API)...
r37630 # list of nodes encoding / decoding
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 def decodelist(l, sep=b' '):
Gregory Szorc
wireproto: move value encoding functions to wireprototypes (API)...
r37630 if l:
Augie Fackler
formatting: blacken the codebase...
r43346 return [bin(v) for v in l.split(sep)]
Gregory Szorc
wireproto: move value encoding functions to wireprototypes (API)...
r37630 return []
Augie Fackler
formatting: blacken the codebase...
r43346
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 def encodelist(l, sep=b' '):
Gregory Szorc
wireproto: move value encoding functions to wireprototypes (API)...
r37630 try:
return sep.join(map(hex, l))
except TypeError:
raise
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireproto: move value encoding functions to wireprototypes (API)...
r37630 # batched call argument encoding
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireproto: move value encoding functions to wireprototypes (API)...
r37630 def escapebatcharg(plain):
Augie Fackler
formatting: blacken the codebase...
r43346 return (
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 plain.replace(b':', b':c')
.replace(b',', b':o')
.replace(b';', b':s')
.replace(b'=', b':e')
Augie Fackler
formatting: blacken the codebase...
r43346 )
Gregory Szorc
wireproto: move value encoding functions to wireprototypes (API)...
r37630
def unescapebatcharg(escaped):
Augie Fackler
formatting: blacken the codebase...
r43346 return (
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 escaped.replace(b':e', b'=')
.replace(b':s', b';')
.replace(b':o', b',')
.replace(b':c', b':')
Augie Fackler
formatting: blacken the codebase...
r43346 )
Gregory Szorc
wireproto: move value encoding functions to wireprototypes (API)...
r37630
Gregory Szorc
wireproto: move gboptsmap to wireprototypes and rename (API)...
r37631 # mapping of options accepted by getbundle and their types
#
Martin von Zweigbergk
wireprototypes: clarify documentation of getbundle argument types...
r43225 # Meant to be extended by extensions. It is the extension's responsibility to
# ensure such options are properly processed in exchange.getbundle.
Gregory Szorc
wireproto: move gboptsmap to wireprototypes and rename (API)...
r37631 #
# supported types are:
#
Martin von Zweigbergk
wireprototypes: clarify documentation of getbundle argument types...
r43225 # :nodes: list of binary nodes, transmitted as space-separated hex nodes
# :csv: list of values, transmitted as comma-separated values
# :scsv: set of values, transmitted as comma-separated values
Gregory Szorc
wireproto: move gboptsmap to wireprototypes and rename (API)...
r37631 # :plain: string with no transformation needed.
GETBUNDLE_ARGUMENTS = {
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'heads': b'nodes',
b'bookmarks': b'boolean',
b'common': b'nodes',
b'obsmarkers': b'boolean',
b'phases': b'boolean',
b'bundlecaps': b'scsv',
b'listkeys': b'csv',
b'cg': b'boolean',
b'cbattempted': b'boolean',
b'stream': b'boolean',
b'includepats': b'csv',
b'excludepats': b'csv',
Gregory Szorc
wireproto: move gboptsmap to wireprototypes and rename (API)...
r37631 }
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
interfaceutil: module to stub out zope.interface...
r37828 class baseprotocolhandler(interfaceutil.Interface):
Gregory Szorc
wireprototypes: move baseprotocolhandler from wireprotoserver...
r36389 """Abstract base class for wire protocol handlers.
A wire protocol handler serves as an interface between protocol command
handlers and the wire protocol transport layer. Protocol handlers provide
methods to read command arguments, redirect stdio for the duration of
the request, handle response types, etc.
"""
Gregory Szorc
interfaceutil: module to stub out zope.interface...
r37828 name = interfaceutil.Attribute(
Gregory Szorc
wireprototypes: move baseprotocolhandler from wireprotoserver...
r36389 """The name of the protocol implementation.
Used for uniquely identifying the transport type.
Augie Fackler
formatting: blacken the codebase...
r43346 """
)
Gregory Szorc
wireprototypes: move baseprotocolhandler from wireprotoserver...
r36389
Gregory Szorc
wireproto: port protocol handler to zope.interface...
r37312 def getargs(args):
Gregory Szorc
wireprototypes: move baseprotocolhandler from wireprotoserver...
r36389 """return the value for arguments in <args>
Gregory Szorc
wireproto: port heads command to wire protocol v2...
r37503 For version 1 transports, returns a list of values in the same
order they appear in ``args``. For version 2 transports, returns
a dict mapping argument name to value.
"""
Gregory Szorc
wireprototypes: move baseprotocolhandler from wireprotoserver...
r36389
Joerg Sonnenberger
wireproto: provide accessors for client capabilities...
r37411 def getprotocaps():
"""Returns the list of protocol-level capabilities of client
Returns a list of capabilities as declared by the client for
the current request (or connection for stateful protocol handlers)."""
Joerg Sonnenberger
wireproto: allow direct stream processing for unbundle...
r37432 def getpayload():
"""Provide a generator for the raw payload.
Gregory Szorc
wireprototypes: move baseprotocolhandler from wireprotoserver...
r36389
Joerg Sonnenberger
wireproto: allow direct stream processing for unbundle...
r37432 The caller is responsible for ensuring that the full payload is
processed.
Gregory Szorc
wireprototypes: move baseprotocolhandler from wireprotoserver...
r36389 """
Gregory Szorc
wireproto: port protocol handler to zope.interface...
r37312 def mayberedirectstdio():
Gregory Szorc
wireprototypes: move baseprotocolhandler from wireprotoserver...
r36389 """Context manager to possibly redirect stdio.
The context manager yields a file-object like object that receives
stdout and stderr output when the context manager is active. Or it
yields ``None`` if no I/O redirection occurs.
The intent of this context manager is to capture stdio output
so it may be sent in the response. Some transports support streaming
stdio to the client in real time. For these transports, stdio output
won't be captured.
"""
Gregory Szorc
wireproto: port protocol handler to zope.interface...
r37312 def client():
Gregory Szorc
wireprototypes: move baseprotocolhandler from wireprotoserver...
r36389 """Returns a string representation of this client (as bytes)."""
Gregory Szorc
wireproto: add transport specific capabilities in the transport...
r36631
Gregory Szorc
wireproto: port protocol handler to zope.interface...
r37312 def addcapabilities(repo, caps):
Gregory Szorc
wireproto: add transport specific capabilities in the transport...
r36631 """Adds advertised capabilities specific to this protocol.
Receives the list of capabilities collected so far.
Returns a list of capabilities. The passed in argument can be returned.
"""
Gregory Szorc
wireproto: formalize permissions checking as part of protocol interface...
r36819
Gregory Szorc
wireproto: port protocol handler to zope.interface...
r37312 def checkperm(perm):
Gregory Szorc
wireproto: formalize permissions checking as part of protocol interface...
r36819 """Validate that the client has permissions to perform a request.
The argument is the permission required to proceed. If the client
doesn't have that permission, the exception should raise or abort
in a protocol specific manner.
"""
Gregory Szorc
wireproto: move command registration types to wireprototypes...
r37799
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireproto: move command registration types to wireprototypes...
r37799 class commandentry(object):
"""Represents a declared wire protocol command."""
Augie Fackler
formatting: blacken the codebase...
r43346
def __init__(
self,
func,
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 args=b'',
Augie Fackler
formatting: blacken the codebase...
r43346 transports=None,
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 permission=b'push',
Augie Fackler
formatting: blacken the codebase...
r43346 cachekeyfn=None,
extracapabilitiesfn=None,
):
Gregory Szorc
wireproto: move command registration types to wireprototypes...
r37799 self.func = func
self.args = args
self.transports = transports or set()
self.permission = permission
Gregory Szorc
wireprotov2: support response caching...
r40057 self.cachekeyfn = cachekeyfn
Gregory Szorc
wireprotov2: advertise recommended batch size for requests...
r40208 self.extracapabilitiesfn = extracapabilitiesfn
Gregory Szorc
wireproto: move command registration types to wireprototypes...
r37799
def _merge(self, func, args):
"""Merge this instance with an incoming 2-tuple.
This is called when a caller using the old 2-tuple API attempts
to replace an instance. The incoming values are merged with
data not captured by the 2-tuple and a new instance containing
the union of the two objects is returned.
"""
Augie Fackler
formatting: blacken the codebase...
r43346 return commandentry(
func,
args=args,
transports=set(self.transports),
permission=self.permission,
)
Gregory Szorc
wireproto: move command registration types to wireprototypes...
r37799
# Old code treats instances as 2-tuples. So expose that interface.
def __iter__(self):
yield self.func
yield self.args
def __getitem__(self, i):
if i == 0:
return self.func
elif i == 1:
return self.args
else:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 raise IndexError(b'can only access elements 0 and 1')
Gregory Szorc
wireproto: move command registration types to wireprototypes...
r37799
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireproto: move command registration types to wireprototypes...
r37799 class commanddict(dict):
"""Container for registered wire protocol commands.
It behaves like a dict. But __setitem__ is overwritten to allow silent
coercion of values from 2-tuples for API compatibility.
"""
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireproto: move command registration types to wireprototypes...
r37799 def __setitem__(self, k, v):
if isinstance(v, commandentry):
pass
# Cast 2-tuples to commandentry instances.
elif isinstance(v, tuple):
if len(v) != 2:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 raise ValueError(b'command tuples must have exactly 2 elements')
Gregory Szorc
wireproto: move command registration types to wireprototypes...
r37799
# It is common for extensions to wrap wire protocol commands via
# e.g. ``wireproto.commands[x] = (newfn, args)``. Because callers
# doing this aren't aware of the new API that uses objects to store
# command entries, we automatically merge old state with new.
if k in self:
v = self[k]._merge(v[0], v[1])
else:
# Use default values from @wireprotocommand.
Augie Fackler
formatting: blacken the codebase...
r43346 v = commandentry(
v[0],
args=v[1],
transports=set(TRANSPORTS),
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 permission=b'push',
Augie Fackler
formatting: blacken the codebase...
r43346 )
Gregory Szorc
wireproto: move command registration types to wireprototypes...
r37799 else:
Augie Fackler
formatting: blacken the codebase...
r43346 raise ValueError(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'command entries must be commandentry instances '
b'or 2-tuples'
Augie Fackler
formatting: blacken the codebase...
r43346 )
Gregory Szorc
wireproto: move command registration types to wireprototypes...
r37799
return super(commanddict, self).__setitem__(k, v)
def commandavailable(self, command, proto):
"""Determine if a command is available for the requested protocol."""
assert proto.name in TRANSPORTS
entry = self.get(command)
if not entry:
return False
if proto.name not in entry.transports:
return False
return True
Gregory Szorc
wireproto: move supportedcompengines out of wireproto...
r37801
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireproto: move supportedcompengines out of wireproto...
r37801 def supportedcompengines(ui, role):
"""Obtain the list of supported compression engines for a request."""
util: extract compression code in `mercurial.utils.compression`...
r42208 assert role in (compression.CLIENTROLE, compression.SERVERROLE)
Gregory Szorc
wireproto: move supportedcompengines out of wireproto...
r37801
util: extract compression code in `mercurial.utils.compression`...
r42208 compengines = compression.compengines.supportedwireengines(role)
Gregory Szorc
wireproto: move supportedcompengines out of wireproto...
r37801
# Allow config to override default list and ordering.
util: extract compression code in `mercurial.utils.compression`...
r42208 if role == compression.SERVERROLE:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 configengines = ui.configlist(b'server', b'compressionengines')
config = b'server.compressionengines'
Gregory Szorc
wireproto: move supportedcompengines out of wireproto...
r37801 else:
# This is currently implemented mainly to facilitate testing. In most
# cases, the server should be in charge of choosing a compression engine
# because a server has the most to lose from a sub-optimal choice. (e.g.
# CPU DoS due to an expensive engine or a network DoS due to poor
# compression ratio).
Augie Fackler
formatting: blacken the codebase...
r43346 configengines = ui.configlist(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'experimental', b'clientcompressionengines'
Augie Fackler
formatting: blacken the codebase...
r43346 )
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 config = b'experimental.clientcompressionengines'
Gregory Szorc
wireproto: move supportedcompengines out of wireproto...
r37801
# No explicit config. Filter out the ones that aren't supposed to be
# advertised and return default ordering.
if not configengines:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 attr = (
b'serverpriority' if role == util.SERVERROLE else b'clientpriority'
)
Augie Fackler
formatting: blacken the codebase...
r43346 return [
e for e in compengines if getattr(e.wireprotosupport(), attr) > 0
]
Gregory Szorc
wireproto: move supportedcompengines out of wireproto...
r37801
# If compression engines are listed in the config, assume there is a good
# reason for it (like server operators wanting to achieve specific
# performance characteristics). So fail fast if the config references
# unusable compression engines.
Augie Fackler
cleanup: run pyupgrade on our source tree to clean up varying things...
r44937 validnames = {e.name() for e in compengines}
invalidnames = {e for e in configengines if e not in validnames}
Gregory Szorc
wireproto: move supportedcompengines out of wireproto...
r37801 if invalidnames:
Augie Fackler
formatting: blacken the codebase...
r43346 raise error.Abort(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 _(b'invalid compression engine defined in %s: %s')
% (config, b', '.join(sorted(invalidnames)))
Augie Fackler
formatting: blacken the codebase...
r43346 )
Gregory Szorc
wireproto: move supportedcompengines out of wireproto...
r37801
compengines = [e for e in compengines if e.name() in configengines]
Augie Fackler
formatting: blacken the codebase...
r43346 compengines = sorted(
compengines, key=lambda e: configengines.index(e.name())
)
Gregory Szorc
wireproto: move supportedcompengines out of wireproto...
r37801
if not compengines:
Augie Fackler
formatting: blacken the codebase...
r43346 raise error.Abort(
_(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'%s config option does not specify any known '
b'compression engines'
Augie Fackler
formatting: blacken the codebase...
r43346 )
% config,
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 hint=_(b'usable compression engines: %s')
Augie Fackler
wireprototypes: disable pytype where it's just confused...
r43782 % b', '.sorted(validnames), # pytype: disable=attribute-error
Augie Fackler
formatting: blacken the codebase...
r43346 )
Gregory Szorc
wireproto: move supportedcompengines out of wireproto...
r37801
return compengines
Gregory Szorc
wireprotov2: define type to represent pre-encoded object...
r40056
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireprotov2: define type to represent pre-encoded object...
r40056 @attr.s
class encodedresponse(object):
"""Represents response data that is already content encoded.
Wire protocol version 2 only.
Commands typically emit Python objects that are encoded and sent over the
wire. If commands emit an object of this type, the encoding step is bypassed
and the content from this object is used instead.
"""
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireprotov2: define type to represent pre-encoded object...
r40056 data = attr.ib()
Gregory Szorc
wireprotov2: server support for sending content redirects...
r40061
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireprotov2: server support for sending content redirects...
r40061 @attr.s
class alternatelocationresponse(object):
"""Represents a response available at an alternate location.
Instances are sent in place of actual response objects when the server
is sending a "content redirect" response.
Only compatible with wire protocol version 2.
"""
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireprotov2: server support for sending content redirects...
r40061 url = attr.ib()
mediatype = attr.ib()
size = attr.ib(default=None)
fullhashes = attr.ib(default=None)
fullhashseed = attr.ib(default=None)
serverdercerts = attr.ib(default=None)
servercadercerts = attr.ib(default=None)
Gregory Szorc
wireprotov2: add response type that serializes to indefinite length bytestring...
r40364
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireprotov2: add response type that serializes to indefinite length bytestring...
r40364 @attr.s
class indefinitebytestringresponse(object):
"""Represents an object to be encoded to an indefinite length bytestring.
Instances are initialized from an iterable of chunks, with each chunk being
a bytes instance.
"""
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
wireprotov2: add response type that serializes to indefinite length bytestring...
r40364 chunks = attr.ib()