• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openvpn-2.3.1/src/openvpn/

Lines Matching refs:rel

125  * @param rel The reliable structure storing sent packets.
129 void reliable_send_purge (struct reliable *rel, struct reliable_ack *ack);
186 * @param rel The reliable structure to initialize.
195 void reliable_init (struct reliable *rel, int buf_size, int offset, int array_size, bool hold);
200 * @param rel The reliable structured to clean up.
202 void reliable_free (struct reliable *rel);
218 * @param rel The reliable structure to check.
224 bool reliable_can_get (const struct reliable *rel);
229 * @param rel The reliable structure for handling this VPN tunnel's
237 bool reliable_not_replay (const struct reliable *rel, packet_id_type id);
252 * @param rel The reliable structure for handling this VPN tunnel's
261 bool reliable_wont_break_sequentiality (const struct reliable *rel, packet_id_type id);
279 * @param rel The reliable structure in which to search for a free
282 * @return A pointer to a buffer of a free entry in the \a rel
286 struct buffer *reliable_get_buf (struct reliable *rel);
292 * @param rel The reliable structure associated with this packet.
297 void reliable_mark_active_incoming (struct reliable *rel, struct buffer *buf,
325 * @param rel The reliable structure from which to retrieve the
332 struct buffer *reliable_get_buf_sequenced (struct reliable *rel);
337 * @param rel The reliable structure associated with the given buffer.
342 void reliable_mark_deleted (struct reliable *rel, struct buffer *buf, bool inc_pid);
355 * @param rel The reliable structure in which to search for a free
358 * @return A pointer to a buffer of a free entry in the \a rel
363 struct buffer *reliable_get_buf_output_sequenced (struct reliable *rel);
369 * @param rel The reliable structure for handling this VPN tunnel's
376 void reliable_mark_active_outgoing (struct reliable *rel, struct buffer *buf, int opcode);
389 * @param rel The reliable structure to check.
397 bool reliable_can_send (const struct reliable *rel);
407 * @param rel The reliable structure to check.
416 struct buffer *reliable_send (struct reliable *rel, int *opcode);
428 * @param rel The reliable structure to check.
435 bool reliable_empty (const struct reliable *rel);
441 * @param rel The reliable structured to check.
444 * of the outgoing packets stored in the \a rel reliable structure. If
448 interval_t reliable_send_timeout (const struct reliable *rel);
454 * @param rel The reliable structure of which the entries should be
457 void reliable_schedule_now (struct reliable *rel);
459 void reliable_debug_print (const struct reliable *rel, char *desc);
463 reliable_set_timeout (struct reliable *rel, interval_t timeout)
465 rel->initial_timeout = timeout;