/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

Seperate SmartServer{Pipe,Socket}StreamMedium out of SmartServerStreamMedium.  Use recv to make the socket server medium better.

Show diffs side-by-side

added added

removed removed

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