2017-06-13 18:03:24 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017 Nicira, Inc.
|
2017-06-13 18:03:27 +03:00
|
|
|
* Copyright (c) 2016 Mellanox Technologies, Ltd.
|
2017-06-13 18:03:24 +03:00
|
|
|
*
|
|
|
|
* 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 TC_H
|
|
|
|
#define TC_H 1
|
|
|
|
|
2017-11-06 14:42:32 -08:00
|
|
|
#include <sys/types.h>
|
2017-06-19 14:33:22 -07:00
|
|
|
#include <netinet/in.h> /* Must happen before linux/pkt_cls.h - Glibc #20215 */
|
2017-06-13 18:03:24 +03:00
|
|
|
#include <linux/pkt_cls.h>
|
|
|
|
#include <linux/pkt_sched.h>
|
2017-06-19 14:33:23 -07:00
|
|
|
|
|
|
|
#include "netlink-socket.h"
|
2017-06-13 18:03:27 +03:00
|
|
|
#include "odp-netlink.h"
|
2017-06-13 18:03:24 +03:00
|
|
|
#include "openvswitch/ofpbuf.h"
|
2018-07-17 02:01:57 +00:00
|
|
|
#include "openvswitch/flow.h"
|
2018-09-18 09:36:19 +01:00
|
|
|
#include "openvswitch/tun-metadata.h"
|
2017-06-13 18:03:24 +03:00
|
|
|
|
2017-06-13 18:03:27 +03:00
|
|
|
/* For backwards compatability with older kernels */
|
|
|
|
#ifndef TC_H_CLSACT
|
|
|
|
#define TC_H_CLSACT TC_H_INGRESS
|
|
|
|
#endif
|
|
|
|
#ifndef TC_H_MIN_INGRESS
|
|
|
|
#define TC_H_MIN_INGRESS 0xFFF2U
|
|
|
|
#endif
|
2019-04-09 15:36:13 +01:00
|
|
|
#ifndef TC_H_MIN_EGRESS
|
|
|
|
#define TC_H_MIN_EGRESS 0xFFF3U
|
|
|
|
#endif
|
2017-06-13 18:03:27 +03:00
|
|
|
|
|
|
|
#define TC_INGRESS_PARENT TC_H_MAKE(TC_H_CLSACT, TC_H_MIN_INGRESS)
|
2019-04-09 15:36:13 +01:00
|
|
|
#define TC_EGRESS_PARENT TC_H_MAKE(TC_H_CLSACT, TC_H_MIN_EGRESS)
|
2017-06-13 18:03:27 +03:00
|
|
|
|
2017-06-13 18:03:30 +03:00
|
|
|
#define TC_POLICY_DEFAULT "none"
|
|
|
|
|
2019-02-01 10:19:32 +00:00
|
|
|
enum tc_flower_reserved_prio {
|
|
|
|
TC_RESERVED_PRIORITY_NONE,
|
|
|
|
TC_RESERVED_PRIORITY_POLICE,
|
|
|
|
__TC_RESERVED_PRIORITY_MAX
|
|
|
|
};
|
|
|
|
#define TC_RESERVED_PRIORITY_MAX (__TC_RESERVED_PRIORITY_MAX -1)
|
|
|
|
|
2019-04-09 15:36:13 +01:00
|
|
|
enum tc_qdisc_hook {
|
|
|
|
TC_INGRESS,
|
|
|
|
TC_EGRESS,
|
|
|
|
};
|
|
|
|
|
2017-06-13 18:03:26 +03:00
|
|
|
/* Returns tc handle 'major':'minor'. */
|
|
|
|
static inline unsigned int
|
|
|
|
tc_make_handle(unsigned int major, unsigned int minor)
|
|
|
|
{
|
|
|
|
return TC_H_MAKE(major << 16, minor);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns the major number from 'handle'. */
|
|
|
|
static inline unsigned int
|
|
|
|
tc_get_major(unsigned int handle)
|
|
|
|
{
|
|
|
|
return TC_H_MAJ(handle) >> 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns the minor number from 'handle'. */
|
|
|
|
static inline unsigned int
|
|
|
|
tc_get_minor(unsigned int handle)
|
|
|
|
{
|
|
|
|
return TC_H_MIN(handle);
|
|
|
|
}
|
|
|
|
|
2017-06-13 18:03:24 +03:00
|
|
|
struct tcmsg *tc_make_request(int ifindex, int type,
|
|
|
|
unsigned int flags, struct ofpbuf *);
|
|
|
|
int tc_transact(struct ofpbuf *request, struct ofpbuf **replyp);
|
2019-04-09 15:36:13 +01:00
|
|
|
int tc_add_del_qdisc(int ifindex, bool add, uint32_t block_id,
|
|
|
|
enum tc_qdisc_hook hook);
|
2017-06-13 18:03:24 +03:00
|
|
|
|
2017-06-13 18:03:27 +03:00
|
|
|
struct tc_cookie {
|
|
|
|
const void *data;
|
|
|
|
size_t len;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct tc_flower_key {
|
|
|
|
ovs_be16 eth_type;
|
|
|
|
uint8_t ip_proto;
|
|
|
|
|
|
|
|
struct eth_addr dst_mac;
|
|
|
|
struct eth_addr src_mac;
|
|
|
|
|
2018-09-02 14:07:49 +01:00
|
|
|
ovs_be32 mpls_lse;
|
2017-08-03 16:38:24 +03:00
|
|
|
ovs_be16 tcp_src;
|
|
|
|
ovs_be16 tcp_dst;
|
2017-08-07 18:19:10 +03:00
|
|
|
ovs_be16 tcp_flags;
|
2017-08-03 16:38:24 +03:00
|
|
|
|
|
|
|
ovs_be16 udp_src;
|
|
|
|
ovs_be16 udp_dst;
|
|
|
|
|
|
|
|
ovs_be16 sctp_src;
|
|
|
|
ovs_be16 sctp_dst;
|
2017-06-13 18:03:27 +03:00
|
|
|
|
2021-01-28 15:51:08 +02:00
|
|
|
uint8_t icmp_code;
|
|
|
|
uint8_t icmp_type;
|
|
|
|
|
2018-07-17 02:01:57 +00:00
|
|
|
uint16_t vlan_id[FLOW_MAX_VLAN_HEADERS];
|
|
|
|
uint8_t vlan_prio[FLOW_MAX_VLAN_HEADERS];
|
2017-06-13 18:03:27 +03:00
|
|
|
|
2018-07-17 02:01:57 +00:00
|
|
|
ovs_be16 encap_eth_type[FLOW_MAX_VLAN_HEADERS];
|
2017-06-13 18:03:27 +03:00
|
|
|
|
2018-03-12 14:58:47 +02:00
|
|
|
uint8_t flags;
|
2017-08-07 18:19:06 +03:00
|
|
|
uint8_t ip_ttl;
|
2018-07-31 13:40:37 +03:00
|
|
|
uint8_t ip_tos;
|
2017-08-07 18:19:06 +03:00
|
|
|
|
2019-12-22 12:16:41 +02:00
|
|
|
uint16_t ct_state;
|
|
|
|
uint16_t ct_zone;
|
2019-12-22 12:16:42 +02:00
|
|
|
uint32_t ct_mark;
|
|
|
|
ovs_u128 ct_label;
|
2019-12-22 12:16:41 +02:00
|
|
|
|
2020-06-05 21:17:29 +08:00
|
|
|
struct {
|
|
|
|
ovs_be32 spa;
|
|
|
|
ovs_be32 tpa;
|
|
|
|
struct eth_addr sha;
|
|
|
|
struct eth_addr tha;
|
|
|
|
uint8_t opcode;
|
|
|
|
} arp;
|
|
|
|
|
2017-08-03 16:38:24 +03:00
|
|
|
struct {
|
|
|
|
ovs_be32 ipv4_src;
|
|
|
|
ovs_be32 ipv4_dst;
|
2017-09-18 07:16:03 +03:00
|
|
|
uint8_t rewrite_ttl;
|
2019-01-28 12:29:09 +00:00
|
|
|
uint8_t rewrite_tos;
|
2017-08-03 16:38:24 +03:00
|
|
|
} ipv4;
|
|
|
|
struct {
|
|
|
|
struct in6_addr ipv6_src;
|
|
|
|
struct in6_addr ipv6_dst;
|
2018-12-26 09:36:22 +02:00
|
|
|
uint8_t rewrite_hlimit;
|
2019-01-28 12:29:10 +00:00
|
|
|
uint8_t rewrite_tclass;
|
2017-08-03 16:38:24 +03:00
|
|
|
} ipv6;
|
2018-09-06 13:52:25 +03:00
|
|
|
|
|
|
|
struct {
|
|
|
|
struct {
|
|
|
|
ovs_be32 ipv4_src;
|
|
|
|
ovs_be32 ipv4_dst;
|
|
|
|
} ipv4;
|
|
|
|
struct {
|
|
|
|
struct in6_addr ipv6_src;
|
|
|
|
struct in6_addr ipv6_dst;
|
|
|
|
} ipv6;
|
|
|
|
uint8_t tos;
|
|
|
|
uint8_t ttl;
|
|
|
|
ovs_be16 tp_src;
|
|
|
|
ovs_be16 tp_dst;
|
|
|
|
ovs_be64 id;
|
2018-09-18 09:36:20 +01:00
|
|
|
struct tun_metadata metadata;
|
2018-09-06 13:52:25 +03:00
|
|
|
} tunnel;
|
2017-06-13 18:03:27 +03:00
|
|
|
};
|
|
|
|
|
2018-04-10 14:18:08 +09:00
|
|
|
enum tc_action_type {
|
|
|
|
TC_ACT_OUTPUT,
|
|
|
|
TC_ACT_ENCAP,
|
|
|
|
TC_ACT_PEDIT,
|
|
|
|
TC_ACT_VLAN_POP,
|
|
|
|
TC_ACT_VLAN_PUSH,
|
2019-07-30 12:05:15 +01:00
|
|
|
TC_ACT_MPLS_POP,
|
2019-07-30 12:05:16 +01:00
|
|
|
TC_ACT_MPLS_PUSH,
|
2019-07-30 12:05:17 +01:00
|
|
|
TC_ACT_MPLS_SET,
|
2019-12-22 12:16:40 +02:00
|
|
|
TC_ACT_GOTO,
|
2019-12-22 12:16:41 +02:00
|
|
|
TC_ACT_CT,
|
2018-04-10 14:18:08 +09:00
|
|
|
};
|
|
|
|
|
2019-12-22 12:16:43 +02:00
|
|
|
enum nat_type {
|
|
|
|
TC_NO_NAT = 0,
|
|
|
|
TC_NAT_SRC,
|
|
|
|
TC_NAT_DST,
|
|
|
|
TC_NAT_RESTORE,
|
|
|
|
};
|
|
|
|
|
2018-04-10 14:18:08 +09:00
|
|
|
struct tc_action {
|
|
|
|
union {
|
2019-12-22 12:16:40 +02:00
|
|
|
int chain;
|
|
|
|
|
2019-04-09 15:36:12 +01:00
|
|
|
struct {
|
|
|
|
int ifindex_out;
|
|
|
|
bool ingress;
|
|
|
|
} out;
|
2018-04-10 14:18:08 +09:00
|
|
|
|
|
|
|
struct {
|
2018-07-17 02:01:54 +00:00
|
|
|
ovs_be16 vlan_push_tpid;
|
2018-04-10 14:18:08 +09:00
|
|
|
uint16_t vlan_push_id;
|
|
|
|
uint8_t vlan_push_prio;
|
|
|
|
} vlan;
|
|
|
|
|
2019-07-30 12:05:15 +01:00
|
|
|
struct {
|
|
|
|
ovs_be16 proto;
|
2019-07-30 12:05:16 +01:00
|
|
|
uint32_t label;
|
|
|
|
uint8_t tc;
|
|
|
|
uint8_t ttl;
|
|
|
|
uint8_t bos;
|
2019-07-30 12:05:15 +01:00
|
|
|
} mpls;
|
|
|
|
|
2018-04-10 14:18:08 +09:00
|
|
|
struct {
|
2019-01-17 17:41:36 +02:00
|
|
|
bool id_present;
|
2018-04-10 14:18:08 +09:00
|
|
|
ovs_be64 id;
|
|
|
|
ovs_be16 tp_src;
|
|
|
|
ovs_be16 tp_dst;
|
2018-07-31 13:40:38 +03:00
|
|
|
uint8_t tos;
|
|
|
|
uint8_t ttl;
|
2018-10-11 10:06:43 +03:00
|
|
|
uint8_t no_csum;
|
2018-04-10 14:18:08 +09:00
|
|
|
struct {
|
|
|
|
ovs_be32 ipv4_src;
|
|
|
|
ovs_be32 ipv4_dst;
|
|
|
|
} ipv4;
|
|
|
|
struct {
|
|
|
|
struct in6_addr ipv6_src;
|
|
|
|
struct in6_addr ipv6_dst;
|
|
|
|
} ipv6;
|
2018-09-18 09:36:19 +01:00
|
|
|
struct tun_metadata data;
|
2018-04-10 14:18:08 +09:00
|
|
|
} encap;
|
2019-12-22 12:16:41 +02:00
|
|
|
|
|
|
|
struct {
|
|
|
|
uint16_t zone;
|
2019-12-22 12:16:42 +02:00
|
|
|
uint32_t mark;
|
|
|
|
uint32_t mark_mask;
|
|
|
|
ovs_u128 label;
|
|
|
|
ovs_u128 label_mask;
|
2019-12-22 12:16:43 +02:00
|
|
|
uint8_t nat_type;
|
|
|
|
struct {
|
|
|
|
uint8_t ip_family;
|
|
|
|
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
ovs_be32 min;
|
|
|
|
ovs_be32 max;
|
|
|
|
} ipv4;
|
|
|
|
struct {
|
|
|
|
struct in6_addr min;
|
|
|
|
struct in6_addr max;
|
|
|
|
} ipv6;
|
|
|
|
};
|
|
|
|
|
2020-03-08 14:50:23 +02:00
|
|
|
struct {
|
2019-12-22 12:16:43 +02:00
|
|
|
ovs_be16 min;
|
|
|
|
ovs_be16 max;
|
|
|
|
} port;
|
|
|
|
|
|
|
|
} range;
|
2019-12-22 12:16:41 +02:00
|
|
|
bool clear;
|
|
|
|
bool force;
|
|
|
|
bool commit;
|
|
|
|
} ct;
|
2018-04-10 14:18:08 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
enum tc_action_type type;
|
|
|
|
};
|
|
|
|
|
dpctl: Properly reflect a rule's offloaded to HW state
Previously, any rule that is offloaded via a netdev, not necessarily
to the HW, would be reported as "offloaded". This patch fixes this
misalignment, and introduces the 'dp' state, as follows:
rule is in HW via TC offload -> offloaded=yes dp:tc
rule is in not HW over TC DP -> offloaded=no dp:tc
rule is in not HW over OVS DP -> offloaded=no dp:ovs
To achieve this, the flows's 'offloaded' flag was encapsulated in a new
attrs struct, which contains the offloaded state of the flow and the
DP layer the flow is handled in, and instead of setting the flow's
'offloaded' state based solely on the type of dump it was acquired
via, for netdev flows it now sends the new attrs struct to be
collected along with the rest of the flow via the netdev, allowing
it to be set per flow.
For TC offloads, the offloaded state is set based on the 'in_hw' and
'not_in_hw' flags received from the TC as part of the flower. If no
such flag was received, due to lack of kernel support, it defaults
to true.
Signed-off-by: Gavi Teitz <gavi@mellanox.com>
Acked-by: Roi Dayan <roid@mellanox.com>
[simon: resolved conflict in lib/dpctl.man]
Signed-off-by: Simon Horman <simon.horman@netronome.com>
2018-06-07 09:36:59 +03:00
|
|
|
enum tc_offloaded_state {
|
|
|
|
TC_OFFLOADED_STATE_UNDEFINED,
|
|
|
|
TC_OFFLOADED_STATE_IN_HW,
|
|
|
|
TC_OFFLOADED_STATE_NOT_IN_HW,
|
|
|
|
};
|
|
|
|
|
2019-10-16 11:37:14 +03:00
|
|
|
#define TCA_ACT_MAX_NUM 16
|
|
|
|
|
2019-12-22 12:16:36 +02:00
|
|
|
struct tcf_id {
|
|
|
|
enum tc_qdisc_hook hook;
|
|
|
|
uint32_t block_id;
|
|
|
|
int ifindex;
|
2019-12-22 12:16:40 +02:00
|
|
|
uint32_t chain;
|
2019-12-22 12:16:36 +02:00
|
|
|
uint16_t prio;
|
2017-06-13 18:03:27 +03:00
|
|
|
uint32_t handle;
|
2019-12-22 12:16:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct tcf_id
|
|
|
|
tc_make_tcf_id(int ifindex, uint32_t block_id, uint16_t prio,
|
|
|
|
enum tc_qdisc_hook hook)
|
|
|
|
{
|
2020-01-03 19:48:18 +01:00
|
|
|
struct tcf_id id = {
|
|
|
|
.hook = hook,
|
|
|
|
.block_id = block_id,
|
|
|
|
.ifindex = ifindex,
|
|
|
|
.prio = prio,
|
|
|
|
};
|
2017-06-13 18:03:27 +03:00
|
|
|
|
2019-12-22 12:16:36 +02:00
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2019-12-22 12:16:40 +02:00
|
|
|
static inline struct tcf_id
|
|
|
|
tc_make_tcf_id_chain(int ifindex, uint32_t block_id, uint32_t chain,
|
|
|
|
uint16_t prio, enum tc_qdisc_hook hook)
|
|
|
|
{
|
|
|
|
struct tcf_id id = tc_make_tcf_id(ifindex, block_id, prio, hook);
|
|
|
|
|
|
|
|
id.chain = chain;
|
|
|
|
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2019-12-22 12:16:36 +02:00
|
|
|
static inline bool
|
|
|
|
is_tcf_id_eq(struct tcf_id *id1, struct tcf_id *id2)
|
|
|
|
{
|
|
|
|
return id1->prio == id2->prio
|
|
|
|
&& id1->handle == id2->handle
|
|
|
|
&& id1->handle == id2->handle
|
|
|
|
&& id1->hook == id2->hook
|
|
|
|
&& id1->block_id == id2->block_id
|
2019-12-22 12:16:40 +02:00
|
|
|
&& id1->ifindex == id2->ifindex
|
|
|
|
&& id1->chain == id2->chain;
|
2019-12-22 12:16:36 +02:00
|
|
|
}
|
|
|
|
|
2020-08-04 09:37:21 +03:00
|
|
|
enum tc_offload_policy {
|
|
|
|
TC_POLICY_NONE = 0,
|
|
|
|
TC_POLICY_SKIP_SW,
|
|
|
|
TC_POLICY_SKIP_HW
|
|
|
|
};
|
|
|
|
|
|
|
|
BUILD_ASSERT_DECL(TC_POLICY_NONE == 0);
|
|
|
|
|
2019-12-22 12:16:36 +02:00
|
|
|
struct tc_flower {
|
2017-06-13 18:03:27 +03:00
|
|
|
struct tc_flower_key key;
|
|
|
|
struct tc_flower_key mask;
|
|
|
|
|
2018-04-10 14:18:08 +09:00
|
|
|
int action_count;
|
2019-10-16 11:37:14 +03:00
|
|
|
struct tc_action actions[TCA_ACT_MAX_NUM];
|
2017-06-13 18:03:27 +03:00
|
|
|
|
|
|
|
struct ovs_flow_stats stats;
|
|
|
|
uint64_t lastused;
|
|
|
|
|
2017-09-18 07:16:03 +03:00
|
|
|
struct {
|
|
|
|
bool rewrite;
|
|
|
|
struct tc_flower_key key;
|
|
|
|
struct tc_flower_key mask;
|
|
|
|
} rewrite;
|
|
|
|
|
|
|
|
uint32_t csum_update_flags;
|
|
|
|
|
2018-09-06 13:52:25 +03:00
|
|
|
bool tunnel;
|
2017-06-13 18:03:27 +03:00
|
|
|
|
|
|
|
struct tc_cookie act_cookie;
|
2017-11-21 14:40:38 +02:00
|
|
|
|
|
|
|
bool needs_full_ip_proto_mask;
|
dpctl: Properly reflect a rule's offloaded to HW state
Previously, any rule that is offloaded via a netdev, not necessarily
to the HW, would be reported as "offloaded". This patch fixes this
misalignment, and introduces the 'dp' state, as follows:
rule is in HW via TC offload -> offloaded=yes dp:tc
rule is in not HW over TC DP -> offloaded=no dp:tc
rule is in not HW over OVS DP -> offloaded=no dp:ovs
To achieve this, the flows's 'offloaded' flag was encapsulated in a new
attrs struct, which contains the offloaded state of the flow and the
DP layer the flow is handled in, and instead of setting the flow's
'offloaded' state based solely on the type of dump it was acquired
via, for netdev flows it now sends the new attrs struct to be
collected along with the rest of the flow via the netdev, allowing
it to be set per flow.
For TC offloads, the offloaded state is set based on the 'in_hw' and
'not_in_hw' flags received from the TC as part of the flower. If no
such flag was received, due to lack of kernel support, it defaults
to true.
Signed-off-by: Gavi Teitz <gavi@mellanox.com>
Acked-by: Roi Dayan <roid@mellanox.com>
[simon: resolved conflict in lib/dpctl.man]
Signed-off-by: Simon Horman <simon.horman@netronome.com>
2018-06-07 09:36:59 +03:00
|
|
|
|
|
|
|
enum tc_offloaded_state offloaded_state;
|
2020-08-04 09:37:21 +03:00
|
|
|
/* Used to force skip_hw when probing tc features. */
|
|
|
|
enum tc_offload_policy tc_policy;
|
2017-06-13 18:03:27 +03:00
|
|
|
};
|
|
|
|
|
2017-09-18 07:16:03 +03:00
|
|
|
/* assert that if we overflow with a masked write of uint32_t to the last byte
|
|
|
|
* of flower.rewrite we overflow inside struct flower.
|
|
|
|
* shouldn't happen unless someone moves rewrite to the end of flower */
|
|
|
|
BUILD_ASSERT_DECL(offsetof(struct tc_flower, rewrite)
|
|
|
|
+ MEMBER_SIZEOF(struct tc_flower, rewrite)
|
|
|
|
+ sizeof(uint32_t) - 2 < sizeof(struct tc_flower));
|
|
|
|
|
2019-12-22 12:16:36 +02:00
|
|
|
int tc_replace_flower(struct tcf_id *id, struct tc_flower *flower);
|
|
|
|
int tc_del_filter(struct tcf_id *id);
|
|
|
|
int tc_get_flower(struct tcf_id *id, struct tc_flower *flower);
|
2020-06-04 13:47:01 +03:00
|
|
|
int tc_dump_flower_start(struct tcf_id *id, struct nl_dump *dump, bool terse);
|
2017-06-13 18:03:27 +03:00
|
|
|
int parse_netlink_to_tc_flower(struct ofpbuf *reply,
|
2019-12-22 12:16:36 +02:00
|
|
|
struct tcf_id *id,
|
2020-06-04 13:47:01 +03:00
|
|
|
struct tc_flower *flower,
|
|
|
|
bool terse);
|
2017-06-13 18:03:30 +03:00
|
|
|
void tc_set_policy(const char *policy);
|
2017-06-13 18:03:27 +03:00
|
|
|
|
2017-06-13 18:03:24 +03:00
|
|
|
#endif /* tc.h */
|