20 lines
303 B
C
20 lines
303 B
C
//
|
|
// Created by xajhuang on 2022/5/11.
|
|
//
|
|
|
|
#ifndef VCPE_PROJECT_PPPOE_SESSION_H
|
|
#define VCPE_PROJECT_PPPOE_SESSION_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <uthash/uthash.h>
|
|
#include <lwip/netif.h>
|
|
|
|
#include "user_info.h"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif //VCPE_PROJECT_PPPOE_SESSION_H
|