001    /*
002     *   Copyright 2005 The Apache Software Foundation
003     *
004     *   Licensed under the Apache License, Version 2.0 (the "License");
005     *   you may not use this file except in compliance with the License.
006     *   You may obtain a copy of the License at
007     *
008     *       http://www.apache.org/licenses/LICENSE-2.0
009     *
010     *   Unless required by applicable law or agreed to in writing, software
011     *   distributed under the License is distributed on an "AS IS" BASIS,
012     *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013     *   See the License for the specific language governing permissions and
014     *   limitations under the License.
015     *
016     */
017    
018    package org.apache.directory.server.dhcp.options.vendor;
019    
020    
021    import org.apache.directory.server.dhcp.options.AddressListOption;
022    
023    
024    /**
025     * The cookie server option specifies a list of RFC 865 cookie
026     * servers available to the client.  Servers SHOULD be listed in order
027     * of preference.
028     * 
029     * The code for the log server option is 8.  The minimum length for this
030     * option is 4 octets, and the length MUST always be a multiple of 4.
031     *
032     * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
033     * @version $Rev: 638228 $, $Date: 2008-03-18 07:12:41 +0100 (Tue, 18 Mar 2008) $
034     */
035    public class CookieServers extends AddressListOption
036    {
037        /*
038         * @see org.apache.directory.server.dhcp.options.DhcpOption#getTag()
039         */
040        public byte getTag()
041        {
042            return 8;
043        }
044    }