Lines Matching refs:logmsg
423 struct sshbuf *logmsg; in monitor_read_log() local
429 if ((logmsg = sshbuf_new()) == NULL) in monitor_read_log()
433 if ((r = sshbuf_reserve(logmsg, 4, &p)) != 0) in monitor_read_log()
437 sshbuf_free(logmsg); in monitor_read_log()
445 if ((r = sshbuf_get_u32(logmsg, &len)) != 0) in monitor_read_log()
451 sshbuf_reset(logmsg); in monitor_read_log()
452 if ((r = sshbuf_reserve(logmsg, len, &p)) != 0) in monitor_read_log()
456 if ((r = sshbuf_get_u32(logmsg, &level)) != 0 || in monitor_read_log()
457 (r = sshbuf_get_u32(logmsg, &forced)) != 0 || in monitor_read_log()
458 (r = sshbuf_get_cstring(logmsg, &msg, NULL)) != 0) in monitor_read_log()
466 sshbuf_free(logmsg); in monitor_read_log()