Home | History | Annotate | Download | only in protocol

Lines Matching refs:reply

60  *  reply - String containing console's reply
62 * boolean: true if reply was "OK", or false otherwise.
65 _is_reply_ok(const char* reply, int reply_size)
67 return (reply_size < 2) ? 0 : (reply[0] == 'O' && reply[1] == 'K');
73 * reply - String containing console's reply
75 * boolean: true if reply was "KO", or false otherwise.
78 _is_reply_ko(const char* reply, int reply_size)
80 return (reply_size < 2) ? 0 : (reply[0] == 'K' && reply[1] == 'O');
106 // Upon successful connection the console will reply with two strings:
134 derror("unexpected reply from the console: %s\n", buf);
302 derror("error reading console reply on stream switch: %s\n", errno_str);
306 derror("unexpected console reply when switching streams: %s\n", buf);
317 derror("unexpected console reply when switching streams: %s\n", buf);