aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_vom.py
AgeCommit message (Expand)AuthorFilesLines
2019-12-04build: fix make test with distributed srcDave Wallace1-2/+2
2019-11-05misc: Fix python scripts shebang lineRenato Botelho do Couto1-1/+1
2019-02-04VTL Cleanup: Fix missing calls to setUpClass/tearDownClass, fix numerous Type...Paul Vinciguerra1-0/+8
2018-12-20Tests: Cleanup @skip decorator.Paul Vinciguerra1-1/+1
2018-11-29make test: create virtualenv under /test/Klement Sekera1-2/+2
2018-02-22make test: build test/ext when doing coverageKlement Sekera1-4/+1
2017-11-01VPP Object Model (VOM)Neale Ranns1-0/+48
highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/*
 * Copyright (c) 2019 Cisco and/or its affiliates.
 * 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 __included_quic_error_h__
#define __included_quic_error_h__

#include <stdarg.h>

#include <vppinfra/format.h>

u8 *quic_format_err (u8 * s, va_list * args);

#endif /* __included_quic_error_h__ */

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */