~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-10-13 07:08:38 UTC
  • mfrom: (2073.1.3 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20061013070838-897847ef11ecdf72
(Andrew Bennetts) Implement bzr+http which lets us tunnel the smart protocol through an http connection

Show diffs side-by-side

added added

removed removed

Lines of Context:
2855
2855
            url = 'readonly+' + url
2856
2856
        t = get_transport(url)
2857
2857
        if inet:
2858
 
            server = smart.SmartStreamServer(sys.stdin, sys.stdout, t)
 
2858
            server = smart.SmartServerPipeStreamMedium(sys.stdin, sys.stdout, t)
2859
2859
        elif port is not None:
2860
2860
            if ':' in port:
2861
2861
                host, port = port.split(':')