This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tango-tsg-service-chaining-…/platform/include/sf_status.h

26 lines
601 B
C
Raw Normal View History

#ifndef _SF_STATUS_H
#define _SF_STATUS_H
2024-07-16 17:25:55 +08:00
#ifdef __cplusplus
extern "C"
{
#endif
#include <stdint.h>
#include "uthash.h"
struct sf_status *sf_status_create(const char *profile);
void sf_status_destory(struct sf_status *handle);
void sf_status_reset(struct sf_status *handle);
2023-03-01 18:23:36 +08:00
void sf_status_delete(struct sf_status *handle, int sf_profile_id);
void sf_status_update(struct sf_status *handle, int sf_vsys_id, int sf_profile_id, int sf_status, int sf_latency);
void sf_status_send(struct sf_status *handle);
int sf_status_get_interval(struct sf_status *handle);
2024-07-16 17:25:55 +08:00
#ifdef __cplusplus
}
#endif
#endif