aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/dhcp/test
AgeCommit message (Expand)AuthorFilesLines
2019-12-17ip: Protocol Independent IP NeighborsNeale Ranns1-6/+0
2019-12-14tests: changes for scapy 2.4.3 migrationsnaramre2-4/+2
2019-11-13dhcp: option 61 add missing type fieldDave Barach1-0/+1
2019-11-05misc: Fix python scripts shebang lineRenato Botelho do Couto1-1/+1
2019-10-25dhcp: fix crash on unicast renewal sendNeale Ranns1-18/+44
2019-10-21dhcp: python3 support in testsOle Troan2-40/+53
2019-10-09dhcp: dhcp6_pd_client_cp API cleanupJakub Grajciar1-42/+38
2019-10-07dhcp: Move to pluginNeale Ranns3-0/+2588
cense"); * 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. */ /** * @brief A DPO to punt packets to the Control-plane */ #ifndef __PUNT_DPO_H__ #define __PUNT_DPO_H__ #include <vnet/dpo/dpo.h> extern int dpo_is_punt(const dpo_id_t *dpo); extern const dpo_id_t *punt_dpo_get(dpo_proto_t proto); extern void punt_dpo_module_init(void); #endif