~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/remote.py

  • Committer: Andrew Bennetts
  • Date: 2007-11-10 15:09:09 UTC
  • mfrom: (2916.2.17 streamable-containers)
  • mto: This revision was merged to the branch mainline in revision 3174.
  • Revision ID: andrew.bennetts@canonical.com-20071110150909-ik5254kgn930th10
Merge streamable-containers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
    )
37
37
from bzrlib.smart import client, medium, protocol
38
38
 
39
 
# must do this otherwise urllib can't parse the urls properly :(
40
 
for scheme in ['ssh', 'bzr', 'bzr+loopback', 'bzr+ssh', 'bzr+http', 'bzr+https']:
41
 
    transport.register_urlparse_netloc_protocol(scheme)
42
 
del scheme
43
 
 
44
39
 
45
40
# Port 4155 is the default port for bzr://, registered with IANA.
46
41
BZR_DEFAULT_INTERFACE = '0.0.0.0'