blob: 49ee04def659de8be8341093f6e6a33942677ddd [file] [log] [blame]
Marco Varlese191a5942017-10-30 18:17:21 +01001/*
2 * Copyright (c) 2017 SUSE LLC.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vnet/sctp/sctp.h>
17
18/* Format SCTP header. */
19u8 *
20format_sctp_header (u8 * s, va_list * args)
21{
22 return NULL;
23}
24
25u8 *
26format_sctp_tx_trace (u8 * s, va_list * args)
27{
28 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
29 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
30
31 return NULL;
32}
33
34/*
35 * fd.io coding-style-patch-verification: ON
36 *
37 * Local Variables:
38 * eval: (c-set-style "gnu")
39 * End:
40 */