mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
send tags: add a status report method
Reviewed by: jhb, markj Sponsored by: NVidia networking Differential revision: https://reviews.freebsd.org/D50653
This commit is contained in:
parent
c9e9a0fe5b
commit
27f680beb5
1 changed files with 2 additions and 0 deletions
|
|
@ -297,12 +297,14 @@ typedef int (if_snd_tag_modify_t)(struct m_snd_tag *, union if_snd_tag_modify_pa
|
|||
typedef int (if_snd_tag_query_t)(struct m_snd_tag *, union if_snd_tag_query_params *);
|
||||
typedef void (if_snd_tag_free_t)(struct m_snd_tag *);
|
||||
typedef struct m_snd_tag *(if_next_send_tag_t)(struct m_snd_tag *);
|
||||
typedef int (if_snd_tag_status_str_t)(struct m_snd_tag *, char *buf, size_t *sz);
|
||||
|
||||
struct if_snd_tag_sw {
|
||||
if_snd_tag_modify_t *snd_tag_modify;
|
||||
if_snd_tag_query_t *snd_tag_query;
|
||||
if_snd_tag_free_t *snd_tag_free;
|
||||
if_next_send_tag_t *next_snd_tag;
|
||||
if_snd_tag_status_str_t *snd_tag_status_str;
|
||||
u_int type; /* One of IF_SND_TAG_TYPE_*. */
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue