blob: b09e7b59e3d988e1a63b0b1da40a9d9dc3826313 [file] [log] [blame]
mohamed rahile04626f2016-04-05 20:42:53 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
mohamed rahile04626f2016-04-05 20:42:53 +05303 *
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
17package org.onosproject.isis.io.isispacket;
18
19/**
20 * Represents ISIS constant parameters.
21 */
22public final class IsisConstantParameters {
23
24 public static final int IRPDISCRIMINATOR = 131;
25 public static final int PROOCOLID = 1;
26 public static final int VERSION = 1;
27 public static final int RESERVED = 0;
28 public static final int MAXAREAADDRESS = 3;
29 public static final int IDLENGTH = 6;
30 public static final int PROTOCOLSUPPORTED = 6;
31 public static final int PACKETMINIMUMLENGTH = 27;
32 public static final int PDULENGTHPOSITION = 17;
33 public static final int PDUHEADERFORREADFROM = 8;
34
35 /**
36 * Creates an instance of this class.
37 */
38 private IsisConstantParameters() {
39
40 }
41}