~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: John Arbash Meinel
  • Date: 2006-10-13 06:41:04 UTC
  • mfrom: (2018.2.29 hpss HTTP support)
  • mto: This revision was merged to the branch mainline in revision 2075.
  • Revision ID: john@arbash-meinel.com-20061013064104-57dbb43c2ffa55ff
(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(':')