summaryrefslogtreecommitdiffstats
path: root/src/pkt_gen.h
blob: 6a6416d1a79fc38d7161e3d690c3c1f1cc79f778 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
  Ido Barnea
  Cisco Systems, Inc.
*/

/*
  Copyright (c) 2016-2016 Cisco Systems, Inc.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
*/

#ifndef __PKT_GEN_H__
#define __PKT_GEN_H__

enum {
    D_PKT_TYPE_ICMP = 1,
    D_PKT_TYPE_UDP = 2,
    D_PKT_TYPE_TCP = 3,
    D_PKT_TYPE_ARP = 4,
    D_PKT_TYPE_RSS_TEST = 5,
    D_PKT_TYPE_9k_UDP = 6,
    D_PKT_TYPE_IPV6 = 60,
    D_PKT_TYPE_HW_VERIFY = 100,
    D_PKT_TYPE_HW_VERIFY_RCV_ALL = 101,
    D_PKT_TYPE_HW_TOGGLE_TEST = 102,
};

enum {
    DPF_VLAN = 0x1,
    DPF_QINQ = 0X2,
    DPF_RXCHECK = 0x4,
    DPF_TOS_1 = 0x8,
};

class CTestPktGen {
 public:
    static char *create_test_pkt(uint16_t l3_type, uint16_t l4_proto, uint8_t ttl, uint32_t ip_id, uint16_t flags
                                 , uint16_t max_payload, int &pkt_size);
    static void create_arp_req(uint8_t *pkt, uint32_t sip, uint32_t tip, uint8_t *src_mac, uint16_t vlan
                               , uint16_t port);
};

#endif