summaryrefslogtreecommitdiffstats
path: root/src/vnet/vxlan
AgeCommit message (Expand)AuthorFilesLines
2017-04-25"autoreply" flag: autogenerate standard xxx_reply_t messagesDave Barach1-11/+1
2017-04-13Remove unsed parameter from fib_table_entry_special_add() (only used in FIB t...Neale Ranns1-1/+1
2017-04-06Use thread local storage for thread indexDamjan Marion2-11/+11
2017-04-06VXLAN:fix tunnel delete not returning sw_if_indexEyal Bari1-0/+1
2017-03-15VXLAN:add hidden multicast interface checkEyal Bari1-23/+17
2017-03-07CLI: hide deleted interfacesEyal Bari1-0/+7
2017-03-01VPP-598: tcp stack initial commitDave Barach1-1/+1
2017-02-27fix:vxlan mcast adj - added as ucast dpo adjEyal Bari1-1/+1
2017-02-22VPP-635: CLI Memory leak with invalid parameterBilly McFall1-19/+62
2017-02-02VXLAN: further unify ip4/ip6 ctl plane handlingEyal Bari2-83/+55
2017-01-31VXLAN: small changes for brevityEyal Bari1-49/+16
2017-01-31Add vxlan-bypass feature to IP6 forwarding pathJohn Lo4-181/+456
2017-01-27IP Multicast FIB (mfib)Neale Ranns1-30/+82
2017-01-20VXLAN - Add IPv6 tunnels src ref countEyal Bari2-84/+68
2017-01-03vxlan fix mcast tunnel deleteEyal Bari2-23/+27
2016-12-28Reorganize source tree to use single autotools instanceDamjan Marion9-0/+3225
ht: bold } /* Literal.Number.Integer.Long */ }
/*
 * Copyright (c) 2015 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.
 */
/*
 * ip4/udp_packet.h: UDP packet format
 *
 * Copyright (c) 2008 Eliot Dresselhaus
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

#ifndef included_udp_packet_h
#define included_udp_packet_h

typedef struct
{
  /* Source and destination port. */
  u16 src_port, dst_port;

  /* Length of UDP header plus payload. */
  u16 length;

  /* Checksum of UDP pseudo-header and data or
     zero if checksum is disabled. */
  u16 checksum;
} udp_header_t;

#endif /* included_udp_packet_h */


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