blob: 0065af4ac5464862c67570306550df8320766e6c [file] [log] [blame]
alshabibeff00542015-09-23 13:22:33 -07001/*
2 * Copyright 2015 Open Networking Laboratory
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 */
alshabib79e52872015-12-07 16:01:01 -080016package org.onosproject.igmp;
alshabibeff00542015-09-23 13:22:33 -070017
18import org.onlab.packet.IGMP;
19import org.onosproject.net.ConnectPoint;
20
21/**
22 * Process an IGMP Membership Report.
23 */
24public final class IGMPProcessMembership {
25
26 // Hide the default constructor.
27 private IGMPProcessMembership() {
28 }
29
30 /**
31 * Process the IGMP Membership report.
32 *
33 * @param igmp the deserialized IGMP message.
Rusty Eddyc0e3fea2015-09-28 21:20:41 +000034 * @param receivedFrom the ConnectPoint this message came from.
alshabibeff00542015-09-23 13:22:33 -070035 */
Rusty Eddyc0e3fea2015-09-28 21:20:41 +000036 public static void processMembership(IGMP igmp, ConnectPoint receivedFrom) {
alshabibeff00542015-09-23 13:22:33 -070037 }
38
39}