Lines Matching defs:frent
1826 nghttp3_frame_entry frent;
1850 frent.fr.hd.type = NGHTTP3_FRAME_SETTINGS;
1851 frent.aux.settings.local_settings = &conn->local.settings;
1853 return nghttp3_stream_frq_add(stream, &frent);
2068 nghttp3_frame_entry frent;
2075 frent.fr.hd.type = NGHTTP3_FRAME_HEADERS;
2076 frent.fr.headers.nva = nnva;
2077 frent.fr.headers.nvlen = nvlen;
2079 rv = nghttp3_stream_frq_add(stream, &frent);
2086 frent.fr.hd.type = NGHTTP3_FRAME_DATA;
2087 frent.aux.data.dr = *dr;
2089 rv = nghttp3_stream_frq_add(stream, &frent);
2238 nghttp3_frame_entry frent;
2243 frent.fr.hd.type = NGHTTP3_FRAME_GOAWAY;
2244 frent.fr.goaway.id = conn->server ? NGHTTP3_SHUTDOWN_NOTICE_STREAM_ID
2247 assert(frent.fr.goaway.id <= conn->tx.goaway_id);
2249 rv = nghttp3_stream_frq_add(conn->tx.ctrl, &frent);
2254 conn->tx.goaway_id = frent.fr.goaway.id;
2261 nghttp3_frame_entry frent;
2266 frent.fr.hd.type = NGHTTP3_FRAME_GOAWAY;
2268 frent.fr.goaway.id =
2271 frent.fr.goaway.id = 0;
2274 assert(frent.fr.goaway.id <= conn->tx.goaway_id);
2276 rv = nghttp3_stream_frq_add(conn->tx.ctrl, &frent);
2281 conn->tx.goaway_id = frent.fr.goaway.id;
2495 nghttp3_frame_entry frent;
2515 frent.fr.hd.type = NGHTTP3_FRAME_PRIORITY_UPDATE;
2516 frent.fr.priority_update.pri_elem_id = stream_id;
2517 frent.fr.priority_update.pri = *pri;
2519 return nghttp3_stream_frq_add(conn->tx.ctrl, &frent);