Mercurial > public > mercurial-scm > hg
comparison mercurial/wireproto.py @ 35759:c24dad55ac19
bundle2: add support for a 'stream' parameter to 'getbundle'
This parameter can be used to request a stream bundle.
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Wed, 17 Jan 2018 16:36:23 +0100 |
parents | a39a9df7ecca |
children | 133a678673cb |
comparison
equal
deleted
inserted
replaced
35758:b996ddf5963d | 35759:c24dad55ac19 |
---|---|
210 'obsmarkers': 'boolean', | 210 'obsmarkers': 'boolean', |
211 'phases': 'boolean', | 211 'phases': 'boolean', |
212 'bundlecaps': 'scsv', | 212 'bundlecaps': 'scsv', |
213 'listkeys': 'csv', | 213 'listkeys': 'csv', |
214 'cg': 'boolean', | 214 'cg': 'boolean', |
215 'cbattempted': 'boolean'} | 215 'cbattempted': 'boolean', |
216 'stream': 'boolean', | |
217 } | |
216 | 218 |
217 # client side | 219 # client side |
218 | 220 |
219 class wirepeer(repository.legacypeer): | 221 class wirepeer(repository.legacypeer): |
220 """Client-side interface for communicating with a peer repository. | 222 """Client-side interface for communicating with a peer repository. |