mirror of
https://github.com/vel21ripn/nDPI.git
synced 2026-05-10 00:42:21 +00:00
Added missing include
This commit is contained in:
parent
2b4321b5c3
commit
dc9409ae12
3 changed files with 6 additions and 0 deletions
|
|
@ -22,6 +22,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "ndpi_api.h"
|
||||
|
||||
#ifndef NDPI_NO_STD_INC
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
|
|
|||
2
src/lib/third_party/include/hash.h
vendored
2
src/lib/third_party/include/hash.h
vendored
|
|
@ -3,6 +3,8 @@
|
|||
#ifndef _HASH_H_
|
||||
#define _HASH_H_
|
||||
|
||||
#include "ndpi_api.h"
|
||||
|
||||
struct entry_s {
|
||||
char *key;
|
||||
u_int16_t value;
|
||||
|
|
|
|||
2
src/lib/third_party/src/hash.c
vendored
2
src/lib/third_party/src/hash.c
vendored
|
|
@ -1,5 +1,7 @@
|
|||
/* Based on https://gist.github.com/tonious/1377667 */
|
||||
|
||||
#include <stdint.h>
|
||||
#include <sys/types.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <limits.h>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue