Home | History | Annotate | Download | only in dist

Lines Matching defs:original

3193  *    is then translated back to the original mux client ID.
3218 struct sshbuf *original = NULL, *modified = NULL;
3246 if ((original = sshbuf_from(cp, have)) == NULL ||
3251 if ((r = sshbuf_get_cstring(original, &ctype, NULL)) != 0 ||
3252 (r = sshbuf_get_u32(original, &id)) != 0) {
3259 c->mux_downstream_id = id; /* original downstream id */
3262 (r = sshbuf_putb(modified, original)) != 0) {
3273 if ((original = sshbuf_from(cp, have)) == NULL ||
3278 if ((r = sshbuf_get_u32(original, &remote_id)) != 0 ||
3279 (r = sshbuf_get_u32(original, &id)) != 0) {
3291 (r = sshbuf_putb(modified, original)) != 0) {
3298 if ((original = sshbuf_from(cp, have)) == NULL) {
3302 if ((r = sshbuf_get_cstring(original, &ctype, NULL)) != 0) {
3310 if ((r = sshbuf_get_u8(original, NULL)) != 0 ||
3311 (r = sshbuf_get_cstring(original, &listen_host, NULL)) != 0 ||
3312 (r = sshbuf_get_u32(original, &listen_port)) != 0) {
3356 sshbuf_free(original);
3379 * restore the original channel id and keep track of CLOSE messages,