26 lines
458 B
C
26 lines
458 B
C
/*
|
|
* dk_plug_quic.h
|
|
*
|
|
* Created on:
|
|
* Author: root
|
|
*/
|
|
|
|
#ifndef SRC_DPKT_PLUG_QUIC_H_
|
|
#define SRC_DPKT_PLUG_QUIC_H_
|
|
|
|
#include "stream.h"
|
|
|
|
#define DK_PLUGID_GQUIC 1003
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int DPKT_GQUIC_INIT();
|
|
void DPKT_GQUIC_DESTROY();
|
|
char DPKT_GQUIC_ENTRY(stSessionInfo* session_info, void **pme, int _thread_num, struct streaminfo *pstream, void *a_packet);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* SRC_DPKT_PLUG_QUIC_H_ */
|