Lines Matching defs:logmsg
441 struct sshbuf *logmsg;
447 if ((logmsg = sshbuf_new()) == NULL)
451 if ((r = sshbuf_reserve(logmsg, 4, &p)) != 0)
455 sshbuf_free(logmsg);
463 if ((r = sshbuf_get_u32(logmsg, &len)) != 0)
469 sshbuf_reset(logmsg);
470 if ((r = sshbuf_reserve(logmsg, len, &p)) != 0)
474 if ((r = sshbuf_get_u32(logmsg, &level)) != 0 ||
475 (r = sshbuf_get_u32(logmsg, &forced)) != 0 ||
476 (r = sshbuf_get_cstring(logmsg, &msg, NULL)) != 0)
485 sshbuf_free(logmsg);