Commit bbcefb38 authored by Michael Tremer's avatar Michael Tremer

importer: Correctly hande response codes from Bird

Signed-off-by: default avatarMichael Tremer <michael.tremer@ipfire.org>
parent 098d871b
......@@ -1109,6 +1109,8 @@ class CLI(object):
# Allocate some buffer
buffer = b""
log.debug("Sending Bird command: %s" % command)
# Send the command
s.send(b"%s\n" % command.encode())
......@@ -1130,10 +1132,20 @@ class CLI(object):
# Split the line we want and keep the rest in buffer
line, buffer = buffer[:pos], buffer[pos:]
# Look for the end-of-output indicator
if line == b"0000 \n":
# Try parsing any status lines
if len(line) > 4 and line[:4].isdigit() and line[4] in (32, 45):
code, delim, line = int(line[:4]), line[4], line[5:]
log.debug("Received response code %s from bird" % code)
# End of output
if code == 0:
return
# Ignore hello line
elif code == 1:
continue
# Otherwise return the line
yield line
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment