blob: 436664e2591115995402243be9f404f9fd19491a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.server.dhcp.options.dhcp;
import org.apache.directory.server.dhcp.options.ByteOption;
/**
* This option is used to indicate that the DHCP 'sname' or 'file'
* fields are being overloaded by using them to carry DHCP options. A
* DHCP server inserts this option if the returned parameters will
* exceed the usual space allotted for options.
*
* If this option is present, the client interprets the specified
* additional fields after it concludes interpretation of the standard
* option fields.
*
* The code for this option is 52, and its length is 1. Legal values
* for this option are:
*
* Value Meaning
* ----- --------
* 1 the 'file' field is used to hold options
* 2 the 'sname' field is used to hold options
* 3 both fields are used to hold options
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class OptionOverload extends ByteOption
{
/*
* @see org.apache.directory.server.dhcp.options.DhcpOption#getTag()
*/
public byte getTag()
{
return 52;
}
}