blob: d3def43d8c68fbcb239d7657ab9d0877e70102f3 [file] [log] [blame]
mohamed rahile04626f2016-04-05 20:42:53 +05301/*
2 * Copyright 2016 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 */
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}