aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_svs.py
diff options
context:
space:
mode:
authorJohn Lo <loj@cisco.com>2019-08-07 19:30:29 -0400
committerDave Barach <openvpp@barachs.net>2019-08-09 11:56:51 +0000
commit8ed2d524aa401a89547a1e059528f8a34bb8895f (patch)
tree806580d923be41e76c6d8f7406ebb7668b3ed2c4 /test/test_svs.py
parenta678974cc52ac61dd6094c3f6649f9e3202be1cb (diff)
vlib: fix vlib_buffer_copy to preserve buffer flags bit
Make vlib_buffer_copy() preserve buffer flags bit the same way as that of vlib_buffer_clone() so both are consistent. Type: fix Signed-off-by: John Lo <loj@cisco.com> Change-Id: I6c32aa1e88724b482ce2439d82019e690311b664
Diffstat (limited to 'test/test_svs.py')
0 files changed, 0 insertions, 0 deletions
{ color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .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) 2017 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 vapi_common_h_included
#define vapi_common_h_included

#ifdef __cplusplus
extern "C" {
#endif

typedef enum
{
  VAPI_OK = 0,	      /**< success */
  VAPI_EINVAL,	      /**< invalid value encountered */
  VAPI_EAGAIN,	      /**< operation would block */
  VAPI_ENOTSUP,	      /**< operation not supported */
  VAPI_ENOMEM,	      /**< out of memory */
  VAPI_ENORESP,	      /**< no response to request */
  VAPI_EMAP_FAIL,     /**< failure while mapping api */
  VAPI_ECON_FAIL,     /**< failure while connecting to vpp */
  VAPI_EINCOMPATIBLE, /**< fundamental incompatibility while connecting to vpp
                           (control ping/control ping reply mismatch) */
  VAPI_MUTEX_FAILURE, /**< failure manipulating internal mutex(es) */
  VAPI_EUSER,	      /**< user error used for breaking dispatch,
                           never used by VAPI */
} vapi_error_e;

typedef enum
{
  VAPI_MODE_BLOCKING = 1,    /**< operations block until response received */
  VAPI_MODE_NONBLOCKING = 2, /**< operations never block */
} vapi_mode_e;

typedef enum
{
  VAPI_WAIT_FOR_READ,	     /**< wait until some message is readable */
  VAPI_WAIT_FOR_WRITE,	     /**< wait until a message can be written */
  VAPI_WAIT_FOR_READ_WRITE,  /**< wait until a read or write can be done */
} vapi_wait_mode_e;

typedef unsigned int vapi_msg_id_t;

#define VAPI_INVALID_MSG_ID ((vapi_msg_id_t)(~0))

#ifdef __cplusplus
}
#endif

#endif