001    /*
002     *  Licensed to the Apache Software Foundation (ASF) under one
003     *  or more contributor license agreements.  See the NOTICE file
004     *  distributed with this work for additional information
005     *  regarding copyright ownership.  The ASF licenses this file
006     *  to you under the Apache License, Version 2.0 (the
007     *  "License"); you may not use this file except in compliance
008     *  with the License.  You may obtain a copy of the License at
009     *  
010     *    http://www.apache.org/licenses/LICENSE-2.0
011     *  
012     *  Unless required by applicable law or agreed to in writing,
013     *  software distributed under the License is distributed on an
014     *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015     *  KIND, either express or implied.  See the License for the
016     *  specific language governing permissions and limitations
017     *  under the License. 
018     *  
019     */
020    
021    package org.apache.directory.server.dhcp.options.misc;
022    
023    
024    import org.apache.directory.server.dhcp.options.ByteOption;
025    
026    
027    /**
028     * The NetBIOS node type option allows NetBIOS over TCP/IP clients which
029     * are configurable to be configured as described in RFC 1001/1002.  The
030     * value is specified as a single octet which identifies the client type
031     * as follows:
032     * 
033     *    Value         Node Type
034     *    -----         ---------
035     *    0x1           B-node
036     *    0x2           P-node
037     *    0x4           M-node
038     *    0x8           H-node
039     * 
040     * In the above chart, the notation '0x' indicates a number in base-16
041     * (hexadecimal). The code for this option is 46. The length of this option is
042     * always 1.
043     */
044    public class NetbiosNodeType extends ByteOption
045    {
046        /*
047         * @see org.apache.directory.server.dhcp.options.DhcpOption#getTag()
048         */
049        public byte getTag()
050        {
051            return 46;
052        }
053    }