blob: dee143a541bb74b806a56d1180df1f32c13d32d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include "flowood.h"
#include "flowood_fun.h"
#include <arpa/inet.h>
#include <linux/if_ether.h>
#include <linux/if_arp.h>
#include <stdio.h>
#include <unistd.h>
#include <pthread.h>
#include <string.h>
#include <assert.h>
/*
����������Ҫ��֤�����İ�����Ԫ��, ����marsio�ķ����㷨��,
����ʱ���ܱ��ֵ�ͬһ���߳���, ��֤���ҵ�ԭ����nat_session.
*/
unsigned int compat_marsio_tuple4_hash(const flwd_tuple5_t *nat_key)
{
/* TODO, ���marsio���������㷨, ��֤ͬԴͬ�� */
return 0;
}
|