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-kni/kni_replace.h

22 lines
377 B
C
Raw Normal View History

2018-10-31 20:17:52 +08:00
#ifndef KNI_REPLACE_H
#define KNI_REPLACE_H
#include "kni_entry.h"
struct kni_replace_info
{
int original_len;
int replace_len;
2018-11-30 18:25:46 +08:00
char find[KNI_SERVICE_LEN];
2018-10-31 20:17:52 +08:00
char replace[KNI_SERVICE_LEN];
};
char kni_replace_scan();
char kni_process_replace(unsigned char dir,int thread_seq,const struct streaminfo* pstream,const void* a_packet,struct kni_pme_info* pmeinfo);
2018-10-31 20:17:52 +08:00
#endif