blob: 5aed04408e0724109f4fa0d5d9c7a7c52589dfcd [file] [log] [blame]
Harshada Chaundkardcd1b142019-03-25 17:27:44 -04001/*
2 * Copyright 2019-present Open Networking Foundation
3 *
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 */
16package org.onosproject.net.packet.packetfilter;
17
18import org.onlab.packet.ARP;
19import org.onlab.packet.Ethernet;
20import org.onosproject.net.packet.PacketContext;
21import org.onosproject.net.packet.PacketInClassifier;
22
23public class ArpPacketClassifier implements PacketInClassifier {
24
25 @Override
26 public boolean match(PacketContext packet) {
27
28 Ethernet eth = packet.inPacket().parsed();
29 if (eth != null && (eth.getEtherType() == Ethernet.TYPE_ARP)) {
30 ARP arpPacket = (ARP) eth.getPayload();
31 if (arpPacket.getOpCode() == ARP.OP_REQUEST) {
32 return true;
33 }
34 }
35 return false;
36 }
37}