blob: 465a069de1e406a0b13bf07271133e96d993f299 [file] [log] [blame]
Dave Barachb852bfa2016-01-04 15:27:42 -05001;;; plugin-h-skel.el - vpp engine plug-in "main.c" skeleton
2;;;
3;;; Copyright (c) 2016 Cisco and/or its affiliates.
4;;; Licensed under the Apache License, Version 2.0 (the "License");
5;;; you may not use this file except in compliance with the License.
6;;; You may obtain a copy of the License at:
7;;;
8;;; http://www.apache.org/licenses/LICENSE-2.0
9;;;
10;;; Unless required by applicable law or agreed to in writing, software
11;;; distributed under the License is distributed on an "AS IS" BASIS,
12;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13;;; See the License for the specific language governing permissions and
14;;; limitations under the License.
15
16(require 'skeleton)
17
Keith Burns (alagalah)ca46d8c2016-03-18 07:22:15 -070018(define-skeleton skel-plugin-h
Dave Barachb852bfa2016-01-04 15:27:42 -050019"Insert a plug-in 'main.c' skeleton "
20nil
21'(if (not (boundp 'plugin-name))
22 (setq plugin-name (read-string "Plugin name: ")))
23'(setq PLUGIN-NAME (upcase plugin-name))
Dave Barach10440432018-04-03 14:58:14 -040024'(setq capital-oh-en "ON")
Dave Barachb852bfa2016-01-04 15:27:42 -050025"
26/*
27 * " plugin-name ".h - skeleton vpp engine plug-in header file
28 *
29 * Copyright (c) <current-year> <your-organization>
30 * Licensed under the Apache License, Version 2.0 (the \"License\");
31 * you may not use this file except in compliance with the License.
32 * You may obtain a copy of the License at:
33 *
34 * http://www.apache.org/licenses/LICENSE-2.0
35 *
36 * Unless required by applicable law or agreed to in writing, software
37 * distributed under the License is distributed on an \"AS IS\" BASIS,
38 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
39 * See the License for the specific language governing permissions and
40 * limitations under the License.
41 */
42#ifndef __included_" plugin-name "_h__
43#define __included_" plugin-name "_h__
44
45#include <vnet/vnet.h>
46#include <vnet/ip/ip.h>
47#include <vnet/ethernet/ethernet.h>
48
49#include <vppinfra/hash.h>
50#include <vppinfra/error.h>
51
52typedef struct {
53 /* API message ID base */
54 u16 msg_id_base;
55
Dave Barachf4addbd2018-04-30 13:03:46 -040056 /* on/off switch for the periodic function */
57 u8 periodic_timer_enabled;
58
Dave Barachb852bfa2016-01-04 15:27:42 -050059 /* convenience */
60 vlib_main_t * vlib_main;
61 vnet_main_t * vnet_main;
62 ethernet_main_t * ethernet_main;
63} " plugin-name "_main_t;
64
65" plugin-name "_main_t " plugin-name "_main;
66
67vlib_node_registration_t " plugin-name "_node;
Dave Barachf4addbd2018-04-30 13:03:46 -040068vlib_node_registration_t " plugin-name "_periodic_node;
69
70/* Periodic function events */
71#define " PLUGIN-NAME "_EVENT1 1
72#define " PLUGIN-NAME "_EVENT2 2
73#define " PLUGIN-NAME "_EVENT_PERIODIC_ENABLE_DISABLE 3
Dave Barachb852bfa2016-01-04 15:27:42 -050074
75#endif /* __included_" plugin-name "_h__ */
Dave Barach10440432018-04-03 14:58:14 -040076
77/*
78 * fd.io coding-style-patch-verification: " capital-oh-en "
79 *
80 * Local Variables:
81 * eval: (c-set-style \"gnu\")
82 * End:
83 */
84
Dave Barachb852bfa2016-01-04 15:27:42 -050085")