libc_extra/android_linux/linux/ethtool/constants/
FLOW.rs

1// This file is part of libc-extra. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/libc-extra/master/COPYRIGHT. No part of libc-extra, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
2// Copyright © 2016-2018 The developers of libc-extra. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/libc-extra/master/COPYRIGHT.
3
4
5pub const TCP_V4_FLOW: c_uchar = 1;
6pub const UDP_V4_FLOW: c_uchar = 2;
7pub const SCTP_V4_FLOW: c_uchar = 3;
8pub const AH_ESP_V4_FLOW: c_uchar = 4;
9pub const TCP_V6_FLOW: c_uchar = 5;
10pub const UDP_V6_FLOW: c_uchar = 6;
11pub const SCTP_V6_FLOW: c_uchar = 7;
12pub const AH_ESP_V6_FLOW: c_uchar = 8;
13pub const AH_V4_FLOW: c_uchar = 9;
14pub const ESP_V4_FLOW: c_uchar = 10;
15pub const AH_V6_FLOW: c_uchar = 11;
16pub const ESP_V6_FLOW: c_uchar = 12;
17pub const IP_USER_FLOW: c_uchar = 13;
18pub const IPV4_FLOW: c_uchar = 16;
19pub const IPV6_FLOW: c_uchar = 17;
20pub const ETHER_FLOW: c_uchar = 18;