/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

Implement HTTP smart server.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2814
2814
            url = 'readonly+' + url
2815
2815
        t = get_transport(url)
2816
2816
        if inet:
2817
 
            server = smart.SmartStreamServer(sys.stdin, sys.stdout, t)
 
2817
            server = smart.SmartServerStreamMedium(sys.stdin, sys.stdout, t)
2818
2818
        elif port is not None:
2819
2819
            if ':' in port:
2820
2820
                host, port = port.split(':')