summaryrefslogtreecommitdiffstats
path: root/src/plugins/wireguard/wireguard_input.c
AgeCommit message (Expand)AuthorFilesLines
2021-11-22wireguard: add local variable in handshake processGabriel Oginski1-2/+4
2021-11-03wireguard: reduce memcopy and prefetch headerGabriel Oginski1-10/+4
2021-10-06wireguard: add events for peerArtem Glazychev1-1/+10
2021-10-06wireguard: add ipv6 supportArtem Glazychev1-25/+92
2021-10-04wireguard: use the same udp-port for multi-tunnelArtem Glazychev1-9/+25
2021-09-30wireguard: move adjacency processing from wireguard_peer to wireguard_interfaceArtem Glazychev1-21/+2
2021-02-24wireguard: coverity fixArtem Glazychev1-11/+12
2021-02-15vlib: refactor checksum offload supportMohsin Kazmi1-1/+2
2020-10-07misc: Purge unused pg includesNeale Ranns1-1/+0
2020-09-29wireguard: fix license headersArtem Glazychev1-0/+1
2020-09-23wireguard: add handoff nodeArtem Glazychev1-115/+140
2020-09-12wireguard: Fix for tunnel encapNeale Ranns1-6/+6
2020-09-09wireguard: initial implementation of wireguard protocolArtem Glazychev1-0/+451
/* 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) 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.
 */
/*
 * global_funcs.h: global data structure access functions
 */

#ifndef included_vnet_global_funcs_h_
#define included_vnet_global_funcs_h_

vnet_main_t *vnet_get_main (void);

#endif /* included_vnet_global_funcs_h_ */

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