blob: 44021468be39d0ca425a042af12f1b75fe91677f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* quic_callback.h
*
* Created on: 2019��4��13��
* Author: root
*/
#ifndef SRC_QUIC_CALLBACK_H_
#define SRC_QUIC_CALLBACK_H_
#include "gquic.h"
UCHAR quic_callPlugins(struct quic_stream *a_quic_stream, struct streaminfo *pstream, enum quic_interested_region region_mask, int thread_seq, void *a_packet);
//UCHAR quic_doWithVersion(struct quic_stream** a_quic_stream, struct streaminfo *pstream,
// unsigned long long region_flag, int thread_seq, void *a_packet);
//UCHAR quic_doWithApplicationData(char *pc_quic_data, int data_len, struct quic_stream **a_quic_stream, struct streaminfo *pstream,
// unsigned long long region_flag, int thread_seq, void *a_packet);
#endif /* SRC_QUIC_CALLBACK_H_ */
|