crypto crypto-openssl: support hashing operations
[vpp.git] / src / vlib / format_funcs.h
index f60b894..4e22625 100644 (file)
@@ -47,6 +47,12 @@ u8 *format_vlib_read_write (u8 * s, va_list * args);
 /* Formats buffer data as printable ascii or as hex. */
 u8 *format_vlib_buffer_data (u8 * s, va_list * args);
 
+/* Formats thread name */
+u8 *format_vlib_thread_name (u8 * s, va_list * args);
+
+/* Formats thread name and thread index */
+u8 *format_vlib_thread_name_and_index (u8 * s, va_list * args);
+
 /* Enable/on => 1; disable/off => 0. */
 uword unformat_vlib_enable_disable (unformat_input_t * input, va_list * args);
 
@@ -59,6 +65,9 @@ uword unformat_vlib_number_by_name (unformat_input_t * input, va_list * args);
 /* Parse an int either %d or 0x%x. */
 uword unformat_vlib_number (unformat_input_t * input, va_list * args);
 
+/* Parse a filename to dump debug info */
+uword unformat_vlib_tmpfile (unformat_input_t * input, va_list * args);
+
 /* Flag to format_vlib_*_header functions to tell them not to recurse
    into the next layer's header.  For example, tells format_vlib_ethernet_header
    not to format ip header. */