Lines Matching refs:logmsg
419 struct sshbuf *logmsg; in monitor_read_log() local
425 if ((logmsg = sshbuf_new()) == NULL) in monitor_read_log()
429 if ((r = sshbuf_reserve(logmsg, 4, &p)) != 0) in monitor_read_log()
433 sshbuf_free(logmsg); in monitor_read_log()
441 if ((r = sshbuf_get_u32(logmsg, &len)) != 0) in monitor_read_log()
447 sshbuf_reset(logmsg); in monitor_read_log()
448 if ((r = sshbuf_reserve(logmsg, len, &p)) != 0) in monitor_read_log()
452 if ((r = sshbuf_get_u32(logmsg, &level)) != 0 || in monitor_read_log()
453 (r = sshbuf_get_u32(logmsg, &forced)) != 0 || in monitor_read_log()
454 (r = sshbuf_get_cstring(logmsg, &msg, NULL)) != 0) in monitor_read_log()
462 sshbuf_free(logmsg); in monitor_read_log()