Lines Matching refs:logmsg
424 struct sshbuf *logmsg; in monitor_read_log() local
430 if ((logmsg = sshbuf_new()) == NULL) in monitor_read_log()
434 if ((r = sshbuf_reserve(logmsg, 4, &p)) != 0) in monitor_read_log()
438 sshbuf_free(logmsg); in monitor_read_log()
446 if ((r = sshbuf_get_u32(logmsg, &len)) != 0) in monitor_read_log()
452 sshbuf_reset(logmsg); in monitor_read_log()
453 if ((r = sshbuf_reserve(logmsg, len, &p)) != 0) in monitor_read_log()
457 if ((r = sshbuf_get_u32(logmsg, &level)) != 0 || in monitor_read_log()
458 (r = sshbuf_get_u32(logmsg, &forced)) != 0 || in monitor_read_log()
459 (r = sshbuf_get_cstring(logmsg, &msg, NULL)) != 0) in monitor_read_log()
467 sshbuf_free(logmsg); in monitor_read_log()