aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/ip/ip6_input.c
AgeCommit message (Expand)AuthorFilesLines
2019-10-07ip: add tracing for ipv6 frag headersKlement Sekera1-0/+24
2019-03-12ip: migrate old MULTIARCH macros to VLIB_NODE_FNFilip Tehlar1-5/+4
2018-10-29Use throttle_t for ND throttlingNeale Ranns1-8/+1
2018-08-09Thread-safe ARP / ND throttlingDave Barach1-2/+24
2018-07-11avoid using thread local storage for thread indexDamjan Marion1-1/+1
2017-10-31Refactor IP input checks for re-use at MPLS dispositionNeale Ranns1-106/+7
2017-04-06Use thread local storage for thread indexDamjan Marion1-4/+4
2017-01-27IP Multicast FIB (mfib)Neale Ranns1-9/+34
2016-12-28Reorganize source tree to use single autotools instanceDamjan Marion1-0/+353
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. */ #include <vnet/vnet.h> #include <vnet/api_errno.h> #include <vnet/ipsec/esp.h> u8 * format_esp_header (u8 * s, va_list * args) { esp_header_t *esp = va_arg (*args, esp_header_t *); s = format (s, "ESP: spi %u, seq %u", clib_net_to_host_u32 (esp->spi), clib_net_to_host_u32 (esp->seq)); return s; } /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */