blob: 73703280f0f4cc5c844a4e737222ce22f713f42f [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.ntp;
import org.apache.directory.server.ntp.protocol.NtpProtocolHandler;
import org.apache.directory.server.protocol.shared.AbstractProtocolService;
import org.apache.mina.transport.socket.nio.DatagramAcceptorConfig;
import org.apache.mina.transport.socket.nio.SocketAcceptorConfig;
import java.io.IOException;
import java.net.InetSocketAddress;
/**
* Contains the configuration parameters for the NTP protocol provider.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$, $Date$
* @org.apache.xbean.XBean
*/
public class NtpServer extends AbstractProtocolService
{
/**
* The default IP port.
*/
private static final int IP_PORT_DEFAULT = 123;
/**
* The default service pid.
*/
private static final String SERVICE_PID_DEFAULT = "org.apache.directory.server.ntp";
/**
* The default service name.
*/
private static final String SERVICE_NAME_DEFAULT = "ApacheDS NTP Service";
/**
* Creates a new instance of NtpConfiguration.
*/
public NtpServer()
{
super.setIpPort( IP_PORT_DEFAULT );
super.setServiceId( SERVICE_PID_DEFAULT );
super.setServiceName( SERVICE_NAME_DEFAULT );
}
/**
* @throws IOException if there are issues binding
*/
public void start() throws IOException
{
//If appropriate, the udp and tcp servers could be enabled with boolean flags.
if ( getDatagramAcceptor() != null )
{
DatagramAcceptorConfig udpConfig = new DatagramAcceptorConfig();
getDatagramAcceptor().bind( new InetSocketAddress( getIpPort() ), new NtpProtocolHandler(), udpConfig );
}
if ( getSocketAcceptor() != null )
{
SocketAcceptorConfig tcpConfig = new SocketAcceptorConfig();
tcpConfig.setDisconnectOnUnbind( false );
tcpConfig.setReuseAddress( true );
getSocketAcceptor().bind( new InetSocketAddress( getIpPort() ), new NtpProtocolHandler(), tcpConfig );
}
}
public void stop()
{
if ( getDatagramAcceptor() != null )
{
getDatagramAcceptor().unbind( new InetSocketAddress( getIpPort() ));
}
if ( getSocketAcceptor() != null )
{
getSocketAcceptor().unbind( new InetSocketAddress( getIpPort() ));
}
}
}