本文整理汇总了Java中org.fourthline.cling.transport.spi.NetworkAddressFactory类的典型用法代码示例。如果您正苦于以下问题:Java NetworkAddressFactory类的具体用法?Java NetworkAddressFactory怎么用?Java NetworkAddressFactory使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
NetworkAddressFactory类属于org.fourthline.cling.transport.spi包,在下文中一共展示了NetworkAddressFactory类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createServiceConfiguration
import org.fourthline.cling.transport.spi.NetworkAddressFactory; //导入依赖的package包/类
private UpnpServiceConfiguration createServiceConfiguration() {
return new DefaultUpnpServiceConfiguration() {
@Override
public DeviceDescriptorBinder getDeviceDescriptorBinderUDA10() {
return new SempDeviceDescriptorBinderImpl(this, sempServerUrl);
}
@Override
public StreamClient createStreamClient() {
// disable the client in order to avoid requesting descriptors from UPnP devices
return null;
}
@Override
public StreamServer createStreamServer(NetworkAddressFactory networkAddressFactory) {
return new org.fourthline.cling.transport.impl.apache.StreamServerImpl(
new StreamServerConfigurationImpl()
);
}
};
}
示例2: createNetworkAddressFactory
import org.fourthline.cling.transport.spi.NetworkAddressFactory; //导入依赖的package包/类
@Override
protected NetworkAddressFactory createNetworkAddressFactory(int streamListenPort) {
// We are only interested in 127.0.0.1
return new NetworkAddressFactoryImpl(streamListenPort) {
@Override
protected boolean isUsableNetworkInterface(NetworkInterface iface) throws Exception {
return (iface.isLoopback());
}
@Override
protected boolean isUsableAddress(NetworkInterface networkInterface, InetAddress address) {
return (address.isLoopbackAddress() && address instanceof Inet4Address);
}
};
}
示例3: init
import org.fourthline.cling.transport.spi.NetworkAddressFactory; //导入依赖的package包/类
synchronized public void init(NetworkInterface networkInterface,
Router router,
NetworkAddressFactory networkAddressFactory,
DatagramProcessor datagramProcessor) throws InitializationException {
this.router = router;
this.networkAddressFactory = networkAddressFactory;
this.datagramProcessor = datagramProcessor;
this.multicastInterface = networkInterface;
try {
log.info("Creating wildcard socket (for receiving multicast datagrams) on port: " + configuration.getPort());
multicastAddress = new InetSocketAddress(configuration.getGroup(), configuration.getPort());
socket = new MulticastSocket(configuration.getPort());
socket.setReuseAddress(true);
socket.setReceiveBufferSize(32768); // Keep a backlog of incoming datagrams if we are not fast enough
log.info("Joining multicast group: " + multicastAddress + " on network interface: " + multicastInterface.getDisplayName());
socket.joinGroup(multicastAddress, multicastInterface);
} catch (Exception ex) {
throw new InitializationException("Could not initialize " + getClass().getSimpleName() + ": " + ex);
}
}
示例4: createStreamServer
import org.fourthline.cling.transport.spi.NetworkAddressFactory; //导入依赖的package包/类
@Override
public StreamServer createStreamServer(NetworkAddressFactory networkAddressFactory)
{
return new StreamServerImpl(
new StreamServerConfigurationImpl(
networkAddressFactory.getStreamListenPort()
)
);
}
示例5: createStreamServer
import org.fourthline.cling.transport.spi.NetworkAddressFactory; //导入依赖的package包/类
@Override
public StreamServer createStreamServer(NetworkAddressFactory networkAddressFactory) {
return new org.fourthline.cling.transport.impl.AsyncServletStreamServerImpl(
new org.fourthline.cling.transport.impl.AsyncServletStreamServerConfigurationImpl(
org.fourthline.cling.transport.impl.jetty.JettyServletContainer.INSTANCE,
networkAddressFactory.getStreamListenPort()
)
);
}
示例6: createStreamServer
import org.fourthline.cling.transport.spi.NetworkAddressFactory; //导入依赖的package包/类
@Override
public StreamServer<?> createStreamServer(NetworkAddressFactory networkAddressFactory) {
return new StreamServerImpl(
new StreamServerConfigurationImpl(
networkAddressFactory.getStreamListenPort()
)
);
}
开发者ID:cyclingengineer,项目名称:UpnpHomeAutomationBridge,代码行数:9,代码来源:HomeAutomationBridgeUpnpServiceConfiguration.java
示例7: createStreamServer
import org.fourthline.cling.transport.spi.NetworkAddressFactory; //导入依赖的package包/类
@Override
public StreamServer createStreamServer(NetworkAddressFactory networkAddressFactory) {
// Use Jetty, start/stop a new shared instance of JettyServletContainer
return new AsyncServletStreamServerImpl(
new AsyncServletStreamServerConfigurationImpl(
AndroidJettyServletContainer.INSTANCE,
networkAddressFactory.getStreamListenPort()
)
);
}
示例8: findMyIpAddress
import org.fourthline.cling.transport.spi.NetworkAddressFactory; //导入依赖的package包/类
private String findMyIpAddress() {
NetworkAddressFactory networkAddressFactory = this.serviceConfiguration.createNetworkAddressFactory();
Iterator<InetAddress> bindAddresses = networkAddressFactory.getBindAddresses();
while(bindAddresses.hasNext()) {
return bindAddresses.next().toString().substring(1); // strip leading /
}
return "127.0.0.1";
}
示例9: createMulticastReceiver
import org.fourthline.cling.transport.spi.NetworkAddressFactory; //导入依赖的package包/类
public MulticastReceiver createMulticastReceiver(NetworkAddressFactory networkAddressFactory) {
return new MulticastReceiverImpl(
new MulticastReceiverConfigurationImpl(
networkAddressFactory.getMulticastGroup(),
networkAddressFactory.getMulticastPort()
)
);
}
示例10: createStreamServer
import org.fourthline.cling.transport.spi.NetworkAddressFactory; //导入依赖的package包/类
public StreamServer createStreamServer(NetworkAddressFactory networkAddressFactory) {
return new StreamServerImpl(
new StreamServerConfigurationImpl(
networkAddressFactory.getStreamListenPort()
)
);
}
示例11: createStreamServer
import org.fourthline.cling.transport.spi.NetworkAddressFactory; //导入依赖的package包/类
@Override
public StreamServer createStreamServer(NetworkAddressFactory networkAddressFactory) {
// Use Jetty, start/stop a new shared instance of JettyServletContainer
return new AsyncServletStreamServerImpl(
new AsyncServletStreamServerConfigurationImpl(
JettyServletContainer.INSTANCE,
networkAddressFactory.getStreamListenPort()
)
);
}
示例12: createStreamServer
import org.fourthline.cling.transport.spi.NetworkAddressFactory; //导入依赖的package包/类
@Override
public StreamServer createStreamServer(NetworkAddressFactory networkAddressFactory) {
return new StreamServerImpl(new StreamServerConfigurationImpl(networkAddressFactory.getStreamListenPort()));
}
示例13: createNetworkAddressFactory
import org.fourthline.cling.transport.spi.NetworkAddressFactory; //导入依赖的package包/类
@Override
protected NetworkAddressFactory createNetworkAddressFactory(int streamListenPort) {
return new ArchosNetworkAddressFactory(streamListenPort);
}
示例14: createDatagramIO
import org.fourthline.cling.transport.spi.NetworkAddressFactory; //导入依赖的package包/类
public DatagramIO createDatagramIO(NetworkAddressFactory networkAddressFactory) {
return new DatagramIOImpl(new DatagramIOConfigurationImpl());
}
示例15: createNetworkAddressFactory
import org.fourthline.cling.transport.spi.NetworkAddressFactory; //导入依赖的package包/类
public NetworkAddressFactory createNetworkAddressFactory() {
return createNetworkAddressFactory(streamListenPort);
}