blob: 418cfbfab3ed60f013d26b92a45ce62493fbfc0d [file] [log] [blame]
Saurav Das86d13e82017-04-28 17:03:48 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Saurav Das86d13e82017-04-28 17:03:48 -07003 *
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
Yi Tsengef19de12017-04-24 11:33:05 -070017package org.onosproject.driver.pipeline.ofdpa;
Saurav Das86d13e82017-04-28 17:03:48 -070018
19import static org.slf4j.LoggerFactory.getLogger;
20
Saurav Das86d13e82017-04-28 17:03:48 -070021import org.slf4j.Logger;
22
Saurav Das86d13e82017-04-28 17:03:48 -070023/**
24 * Pipeliner for Broadcom OF-DPA 3.0 TTP, specifically for Qumran based switches.
25 */
26public class Ofdpa3QmxPipeline extends Ofdpa3Pipeline {
27 private final Logger log = getLogger(getClass());
28
29 @Override
30 protected void initDriverId() {
31 driverId = coreService.registerApplication(
32 "org.onosproject.driver.Ofdpa3QmxPipeline");
33 }
34
35 @Override
36 protected boolean matchInPortTmacTable() {
37 return false;
38 }
Charles Chand9e47c62017-10-05 15:17:15 -070039
40 @Override
41 protected boolean supportIpv6L4Dst() {
42 return false;
43 }
Charles Chand57552d2018-03-02 15:41:41 -080044
45 @Override
46 protected boolean requireUnicastBeforeMulticast() {
47 return true;
48 }
Saurav Das86d13e82017-04-28 17:03:48 -070049}