100+ results for 'java.net.inetaddress'
Not the results you expected?
LdapTLSSocketFactory.java (http://vt-middleware.googlecode.com/svn/) Java · 684 lines
TestLockRequestBuilder.java (git://github.com/apache/hive.git) Java · 585 lines
server_RRPC.java (http://rpc-php-ruby-c-java.googlecode.com/svn/trunk/) Java · 699 lines
Sendrecv.java (http://jhmtasc.googlecode.com/svn/trunk/) Java · 307 lines
ManagedSocketFactoryTest.java (git://github.com/infinispan/infinispan.git) Java · 224 lines
NetworkInterface.cs (git://github.com/koush/androidmono.git) C# · 202 lines
DiameterAvpFactory.java
(http://mobicents.googlecode.com/svn/trunk/)
Java · 396 lines
✨ Summary
This Java code provides a set of methods for creating and manipulating Diameter protocol messages, including commands, AVPs (Application-Value Pairs), and grouped AVPs. It allows developers to create specific types of messages with required and optional values, making it easier to implement Diameter protocol functionality in their applications.
This Java code provides a set of methods for creating and manipulating Diameter protocol messages, including commands, AVPs (Application-Value Pairs), and grouped AVPs. It allows developers to create specific types of messages with required and optional values, making it easier to implement Diameter protocol functionality in their applications.
175 /**
176 * Create an AVP containing a DiameterAvpValue from the java.net.InetAddress value provided. The
177 * AVP type will be determined from the AVP code.
178 *
181 * @return an implementation of the DiameterAvp interface
182 */
183 DiameterAvp createAvp(int avpCode, java.net.InetAddress value) throws NoSuchAvpException;
185 /**
186 * Create a vendor-specific AVP containing a DiameterAvpValue from the java.net.InetAddress value provided.
187 * The AVP type will be determined from the AVP code.
188 *
DiameterAvpFactoryImpl.java
(http://mobicents.googlecode.com/svn/trunk/)
Java · 415 lines
✨ Summary
This Java code defines a factory class for creating various types of Diameter Avp (Application Protocol Data Units) objects, which are used in Diameter signaling protocols. It provides methods to create instances of different Avp classes, such as FailedAvp, ProxyInfoAvp, and VendorSpecificApplicationIdAvp, with optional parameters or default values.
This Java code defines a factory class for creating various types of Diameter Avp (Application Protocol Data Units) objects, which are used in Diameter signaling protocols. It provides methods to create instances of different Avp classes, such as FailedAvp, ProxyInfoAvp, and VendorSpecificApplicationIdAvp, with optional parameters or default values.
23 package org.mobicents.slee.resource.diameter.base;
25 import java.net.InetAddress;
26 import java.util.Date;
191 /*
192 * (non-Javadoc)
193 * @see net.java.slee.resource.diameter.base.DiameterAvpFactory#createAvp(int, java.net.InetAddress)
194 */
195 public DiameterAvp createAvp( int avpCode, InetAddress value ) throws NoSuchAvpException
200 /*
201 * (non-Javadoc)
202 * @see net.java.slee.resource.diameter.base.DiameterAvpFactory#createAvp(int, int, java.net.InetAddress)
203 */
204 public DiameterAvp createAvp( int vendorId, int avpCode, InetAddress value ) throws NoSuchAvpException
AvpSet.java
(http://mobicents.googlecode.com/svn/trunk/)
Java · 814 lines
✨ Summary
This Java code defines a class with various methods for inserting different types of Diameter protocol AVPs (Attribute-Value Pairs) into an object, such as Date, Address, and Grouped AVPs. The methods allow for setting flags to indicate whether the AVP is marked as mandatory or not, and also specify a vendor ID if applicable.
This Java code defines a class with various methods for inserting different types of Diameter protocol AVPs (Attribute-Value Pairs) into an object, such as Date, Address, and Grouped AVPs. The methods allow for setting flags to indicate whether the AVP is marked as mandatory or not, and also specify a vendor ID if applicable.
AvpSetImpl.java
(http://mobicents.googlecode.com/svn/trunk/)
Java · 690 lines
✨ Summary
This Java class, AvpSetImpl
, represents a set of Avps (Attribute-Value Pairs). It provides methods to insert and retrieve Avps, as well as manage grouped data. The class implements an iterator contract, allowing for iteration over the set of Avps. It also overrides the toString
method for string representation.
This Java class, AvpSetImpl
, represents a set of Avps (Attribute-Value Pairs). It provides methods to insert and retrieve Avps, as well as manage grouped data. The class implements an iterator contract, allowing for iteration over the set of Avps. It also overrides the toString
method for string representation.
URLStreamHandler.cs (git://github.com/koush/androidmono.git) C# · 170 lines
78 }
79 internal static global::MonoJavaBridge.MethodId _getHostAddress13973;
80 protected virtual global::java.net.InetAddress getHostAddress(java.net.URL arg0)
81 {
82 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
83 if (!IsClrObject)
84 return global::MonoJavaBridge.JavaBridge.WrapJavaObject(@__env.CallObjectMethod(this.JvmHandle, global::java.net.URLStreamHandler._getHostAddress13973, global::MonoJavaBridge.JavaBridge.ConvertToValue(arg0))) as java.net.InetAddress;
85 else
86 return global::MonoJavaBridge.JavaBridge.WrapJavaObject(@__env.CallNonVirtualObjectMethod(this.JvmHandle, global::java.net.URLStreamHandler.staticClass, global::java.net.URLStreamHandler._getHostAddress13973, global::MonoJavaBridge.JavaBridge.ConvertToValue(arg0))) as java.net.InetAddress;
Socket.cs (git://github.com/koush/androidmono.git) C# · 510 lines
229 }
230 internal static global::MonoJavaBridge.MethodId _getInetAddress13782;
231 public virtual global::java.net.InetAddress getInetAddress()
232 {
233 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
234 if (!IsClrObject)
235 return global::MonoJavaBridge.JavaBridge.WrapJavaObject(@__env.CallObjectMethod(this.JvmHandle, global::java.net.Socket._getInetAddress13782)) as java.net.InetAddress;
236 else
237 return global::MonoJavaBridge.JavaBridge.WrapJavaObject(@__env.CallNonVirtualObjectMethod(this.JvmHandle, global::java.net.Socket.staticClass, global::java.net.Socket._getInetAddress13782)) as java.net.InetAddress;
430 }
431 internal static global::MonoJavaBridge.MethodId _Socket13806;
432 public Socket(java.net.InetAddress arg0, int arg1, java.net.InetAddress arg2, int arg3) : base(global::MonoJavaBridge.JNIEnv.ThreadEnv)
433 {
434 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
DatagramSocket.cs (git://github.com/koush/androidmono.git) C# · 358 lines
58 }
59 internal static global::MonoJavaBridge.MethodId _connect13608;
60 public virtual void connect(java.net.InetAddress arg0, int arg1)
61 {
62 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
193 }
194 internal static global::MonoJavaBridge.MethodId _getInetAddress13623;
195 public virtual global::java.net.InetAddress getInetAddress()
196 {
197 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
198 if (!IsClrObject)
199 return global::MonoJavaBridge.JavaBridge.WrapJavaObject(@__env.CallObjectMethod(this.JvmHandle, global::java.net.DatagramSocket._getInetAddress13623)) as java.net.InetAddress;
200 else
201 return global::MonoJavaBridge.JavaBridge.WrapJavaObject(@__env.CallNonVirtualObjectMethod(this.JvmHandle, global::java.net.DatagramSocket.staticClass, global::java.net.DatagramSocket._getInetAddress13623)) as java.net.InetAddress;
DatagramSocketImpl.cs (git://github.com/koush/androidmono.git) C# · 308 lines
17 public abstract void setOption(int arg0, java.lang.Object arg1);
18 internal static global::MonoJavaBridge.MethodId _join13640;
19 protected abstract void join(java.net.InetAddress arg0);
20 internal static global::MonoJavaBridge.MethodId _close13641;
21 protected abstract void close();
22 internal static global::MonoJavaBridge.MethodId _peek13642;
23 protected abstract int peek(java.net.InetAddress arg0);
24 internal static global::MonoJavaBridge.MethodId _send13643;
25 protected abstract void send(java.net.DatagramPacket arg0);
27 protected abstract void create();
28 internal static global::MonoJavaBridge.MethodId _connect13645;
29 protected virtual void connect(java.net.InetAddress arg0, int arg1)
30 {
31 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
ServerSocket.cs (git://github.com/koush/androidmono.git) C# · 250 lines
130 }
131 internal static global::MonoJavaBridge.MethodId _getInetAddress13747;
132 public virtual global::java.net.InetAddress getInetAddress()
133 {
134 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
135 if (!IsClrObject)
136 return global::MonoJavaBridge.JavaBridge.WrapJavaObject(@__env.CallObjectMethod(this.JvmHandle, global::java.net.ServerSocket._getInetAddress13747)) as java.net.InetAddress;
137 else
138 return global::MonoJavaBridge.JavaBridge.WrapJavaObject(@__env.CallNonVirtualObjectMethod(this.JvmHandle, global::java.net.ServerSocket.staticClass, global::java.net.ServerSocket._getInetAddress13747)) as java.net.InetAddress;
211 }
212 internal static global::MonoJavaBridge.MethodId _ServerSocket13757;
213 public ServerSocket(int arg0, int arg1, java.net.InetAddress arg2) : base(global::MonoJavaBridge.JNIEnv.ThreadEnv)
214 {
215 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
SocketImpl.cs (git://github.com/koush/androidmono.git) C# · 319 lines
47 protected abstract void connect(java.net.SocketAddress arg0, int arg1);
48 internal static global::MonoJavaBridge.MethodId _connect13820;
49 protected abstract void connect(java.net.InetAddress arg0, int arg1);
50 internal static global::MonoJavaBridge.MethodId _connect13821;
51 protected abstract void connect(java.lang.String arg0, int arg1);
64 protected abstract void listen(int arg0);
65 internal static global::MonoJavaBridge.MethodId _bind13825;
66 protected abstract void bind(java.net.InetAddress arg0, int arg1);
67 internal static global::MonoJavaBridge.MethodId _shutdownInput13826;
68 protected virtual void shutdownInput()
84 }
85 internal static global::MonoJavaBridge.MethodId _getInetAddress13828;
86 protected virtual global::java.net.InetAddress getInetAddress()
87 {
88 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
InetAddress.cs (git://github.com/koush/androidmono.git) C# · 246 lines
70 {
71 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
72 return global::MonoJavaBridge.JavaBridge.WrapJavaObject(@__env.CallStaticObjectMethod(java.net.InetAddress.staticClass, global::java.net.InetAddress._getByName13685, global::MonoJavaBridge.JavaBridge.ConvertToValue(arg0))) as java.net.InetAddress;
73 }
74 internal static global::MonoJavaBridge.MethodId _isAnyLocalAddress13686;
205 {
206 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
207 return global::MonoJavaBridge.JavaBridge.WrapJavaArrayObject<java.net.InetAddress>(@__env.CallStaticObjectMethod(java.net.InetAddress.staticClass, global::java.net.InetAddress._getAllByName13701, global::MonoJavaBridge.JavaBridge.ConvertToValue(arg0))) as java.net.InetAddress[];
208 }
209 internal static global::MonoJavaBridge.MethodId _getLocalHost13702;
211 {
212 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
213 return global::MonoJavaBridge.JavaBridge.WrapJavaObject(@__env.CallStaticObjectMethod(java.net.InetAddress.staticClass, global::java.net.InetAddress._getLocalHost13702)) as java.net.InetAddress;
214 }
215 private static void InitJNI()
HttpRoute.cs (git://github.com/koush/androidmono.git) C# · 201 lines
58 }
59 internal static global::MonoJavaBridge.MethodId _getLocalAddress16363;
60 public global::java.net.InetAddress getLocalAddress()
61 {
62 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
63 if (!IsClrObject)
64 return global::MonoJavaBridge.JavaBridge.WrapJavaObject(@__env.CallObjectMethod(this.JvmHandle, global::org.apache.http.conn.routing.HttpRoute._getLocalAddress16363)) as java.net.InetAddress;
65 else
66 return global::MonoJavaBridge.JavaBridge.WrapJavaObject(@__env.CallNonVirtualObjectMethod(this.JvmHandle, global::org.apache.http.conn.routing.HttpRoute.staticClass, global::org.apache.http.conn.routing.HttpRoute._getLocalAddress16363)) as java.net.InetAddress;
139 }
140 internal static global::MonoJavaBridge.MethodId _HttpRoute16372;
141 public HttpRoute(org.apache.http.HttpHost arg0, java.net.InetAddress arg1, org.apache.http.HttpHost[] arg2, bool arg3, org.apache.http.conn.routing.RouteInfo_TunnelType arg4, org.apache.http.conn.routing.RouteInfo_LayerType arg5) : base(global::MonoJavaBridge.JNIEnv.ThreadEnv)
142 {
143 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
SSLSocket.cs (git://github.com/koush/androidmono.git) C# · 313 lines
63 }
64 internal static global::MonoJavaBridge.MethodId _SSLSocket16019;
65 protected SSLSocket(java.net.InetAddress arg0, int arg1) : base(global::MonoJavaBridge.JNIEnv.ThreadEnv)
66 {
67 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
70 }
71 internal static global::MonoJavaBridge.MethodId _SSLSocket16020;
72 protected SSLSocket(java.lang.String arg0, int arg1, java.net.InetAddress arg2, int arg3) : base(global::MonoJavaBridge.JNIEnv.ThreadEnv)
73 {
74 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
77 }
78 internal static global::MonoJavaBridge.MethodId _SSLSocket16021;
79 protected SSLSocket(java.net.InetAddress arg0, int arg1, java.net.InetAddress arg2, int arg3) : base(global::MonoJavaBridge.JNIEnv.ThreadEnv)
80 {
81 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
RTPStreamSender.java (http://red5phone.googlecode.com/svn/trunk/) Java · 528 lines
Network.java (git://pkgs.fedoraproject.org/ice) Java · 1198 lines
688 getLocalAddress(int protocol)
689 {
690 java.net.InetAddress addr = null;
692 try
751 }
753 for(java.net.InetAddress addr : addrs)
754 {
755 if(protocol == EnableBoth || isValidAddr(addr, protocol))
782 getLocalAddresses(int protocol)
783 {
784 java.util.ArrayList<java.net.InetAddress> result = new java.util.ArrayList<java.net.InetAddress>();
785 try
786 {
TestRouteDirector.java (git://pkgs.fedoraproject.org/httpcomponents-client) Java · 476 lines
RouteInfo.cs (git://github.com/koush/androidmono.git) C# · 136 lines
5 {
6 bool isSecure();
7 global::java.net.InetAddress getLocalAddress();
8 global::org.apache.http.HttpHost getTargetHost();
9 int getHopCount();
37 }
38 internal static global::MonoJavaBridge.MethodId _getLocalAddress16386;
39 global::java.net.InetAddress org.apache.http.conn.routing.RouteInfo.getLocalAddress()
40 {
41 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
42 if (!IsClrObject)
43 return global::MonoJavaBridge.JavaBridge.WrapJavaObject(@__env.CallObjectMethod(this.JvmHandle, global::org.apache.http.conn.routing.RouteInfo_._getLocalAddress16386)) as java.net.InetAddress;
44 else
45 return global::MonoJavaBridge.JavaBridge.WrapJavaObject(@__env.CallNonVirtualObjectMethod(this.JvmHandle, global::org.apache.http.conn.routing.RouteInfo_.staticClass, global::org.apache.http.conn.routing.RouteInfo_._getLocalAddress16386)) as java.net.InetAddress;
TestMachineList.java (git://github.com/apache/hadoop-common.git) Java · 291 lines
SSLCertificateSocketFactory.cs (git://github.com/koush/androidmono.git) C# · 137 lines
64 }
65 internal static global::MonoJavaBridge.MethodId _createSocket5247;
66 public override global::java.net.Socket createSocket(java.net.InetAddress arg0, int arg1, java.net.InetAddress arg2, int arg3)
67 {
68 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
73 }
74 internal static global::MonoJavaBridge.MethodId _createSocket5248;
75 public override global::java.net.Socket createSocket(java.net.InetAddress arg0, int arg1)
76 {
77 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
82 }
83 internal static global::MonoJavaBridge.MethodId _createSocket5249;
84 public override global::java.net.Socket createSocket(java.lang.String arg0, int arg1, java.net.InetAddress arg2, int arg3)
85 {
86 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
Inet6AddressTest.java (https://github.com/apache/harmony-classlib.git) Java · 966 lines
KrbSafeBodyDecoderTest.java (https://github.com/apache/directory-server.git) Java · 692 lines
EncKrbPrivPartDecoderTest.java (https://github.com/apache/directory-server.git) Java · 692 lines
GettableByIndexData.java (https://github.com/apache/cassandra.git) Java · 592 lines
MessageReceiver.java (http://kouchat.googlecode.com/svn/) Java · 259 lines
ForwardedHeaderHandlerSpec.scala (git://github.com/playframework/Play20.git) Scala · 528 lines
TestRouteDirector.java (http://open-gpstracker.googlecode.com/svn/trunk/) Java · 479 lines
ForwardedHeaderHandlerSpec.scala (git://github.com/playframework/Play20.git) Scala · 423 lines
DataTypeJUnitTest.java (https://gitlab.com/kidaa/incubator-geode.git) Java · 617 lines
10 import java.math.BigDecimal;
11 import java.math.BigInteger;
12 import java.net.InetAddress;
13 import java.util.ArrayList;
14 import java.util.Date;
143 byte[] bytes = baos.toByteArray();
144 String type = DataType.getDataType(bytes);
145 assertEquals("java.net.InetAddress", type);
146 }
147 @Test
CacheServerStats.java (https://gitlab.com/kidaa/incubator-geode.git) Java · 1139 lines
Locator.java (https://gitlab.com/kidaa/incubator-geode.git) Java · 543 lines
InetAddressAndPortTest.java (https://github.com/apache/cassandra.git) Java · 182 lines
FileSender.java (http://kouchat.googlecode.com/svn/) Java · 415 lines
IoNetworkTransport.java (git://pkgs.fedoraproject.org/qpid-cpp) Java · 278 lines
Serializer.java (git://github.com/lwes/lwes-java.git) Java · 916 lines
Deserializer.java (git://github.com/lwes/lwes-java.git) Java · 791 lines
AbstractTLSSocketFactory.java (http://vt-middleware.googlecode.com/svn/) Java · 330 lines
DefaultConnectionSpec.java (git://github.com/alphazero/jredis.git) Java · 233 lines
InboundConnectionSettings.java (https://github.com/apache/cassandra.git) Java · 213 lines
Main.java (git://github.com/craigwblake/redline.git) Java · 123 lines
StaticIpConfigurationTest.java (git://github.com/android/platform_frameworks_base.git) Java · 226 lines
CqlOperationResultImpl.java (git://github.com/Netflix/astyanax.git) Java · 108 lines
MessagingServices.java (git://github.com/gradle/gradle.git) Java · 195 lines
DiscoveryNodeFiltersTests.java (git://github.com/elasticsearch/elasticsearch.git) Java · 261 lines
TrapReceiver.java
(http://mobicents.googlecode.com/svn/trunk/)
Java · 161 lines
✨ Summary
This Java code implements an SNMP trap receiver engine, responsible for receiving and logging information about incoming SNMP traps from remote devices. It handles both SNMPv2 and v1 traps, extracting relevant data such as agent address, community string, and variable bindings. The received data is logged using a logger, providing a record of the trap’s contents and any associated errors.
This Java code implements an SNMP trap receiver engine, responsible for receiving and logging information about incoming SNMP traps from remote devices. It handles both SNMPv2 and v1 traps, extracting relevant data such as agent address, community string, and variable bindings. The received data is logged using a logger, providing a record of the trap’s contents and any associated errors.
This Java code implements an SNMP trap receiver engine, responsible for receiving and logging information about incoming SNMP traps from remote devices. It handles both SNMPv2 and v1 traps, extracting relevant data such as agent address, community string, and variable bindings. The received data is logged using a logger, providing a record of the trap’s contents and any associated errors.
This Java code implements an SNMP trap receiver engine, responsible for receiving and logging information about incoming SNMP traps from remote devices. It handles both SNMPv2 and v1 traps, extracting relevant data such as agent address, community string, and variable bindings. The received data is logged using a logger, providing a record of the trap’s contents and any associated errors.
Remote.java (http://textmash.googlecode.com/svn/trunk/) Java · 223 lines
ServletTester.java (git://pkgs.fedoraproject.org/jetty) Java · 375 lines
RegistryTest.java (https://github.com/apache/harmony-classlib.git) Java · 257 lines
SocketTstFactory.java (https://github.com/apache/activemq.git) Java · 179 lines
PacScriptMethodsTest.java (http://proxy-vole.googlecode.com/svn/trunk/) Java · 176 lines
ConnectionValidator.java (http://wastelanders.googlecode.com/svn/trunk/) Java · 217 lines
SocketServer.java (http://gralej.googlecode.com/svn/trunk/) Java · 239 lines
DatagramSocketEventEmitter.java (git://github.com/lwes/lwes-java.git) Java · 283 lines
StoreBasedDhcpService.java (https://github.com/apache/directory-server.git) Java · 310 lines
MRWebAppUtil.java (git://github.com/apache/hadoop-common.git) Java · 174 lines
PrintPeers.java (https://code.google.com/p/bitcoinj/) Java · 112 lines
ContinuousTcpClient.java (https://bitbucket.org/spa-smartpay/android-castle-btprotocol.git) Java · 350 lines
NetworkUtils.java (http://kouchat.googlecode.com/svn/) Java · 305 lines
CPoolProxy.java (git://github.com/mozilla-services/android-sync.git) Java · 245 lines
ConnectionHandler.java (git://pkgs.fedoraproject.org/RabbIT) Java · 315 lines
ConcurrentUpdateSolrClientBuilderTest.java (git://github.com/apache/lucene-solr.git) Java · 71 lines
Server.java (git://github.com/playframework/play.git) Java · 177 lines
TestServiceAuthorization.java (git://github.com/apache/hadoop-common.git) Java · 184 lines
IPConfig.java (http://u3j-aion-beta.googlecode.com/svn/trunk/) Java · 125 lines
ArquillianConnector.java (git://github.com/liferay/liferay-portal.git) Java · 89 lines
OperatingSystemNetworkInfo.java (http://kouchat.googlecode.com/svn/) Java · 165 lines
MMOConnection.java (http://l2emu.googlecode.com/svn/trunk/) Java · 309 lines
JUnitClientImpl.kt (git://github.com/JetBrains/intellij-community.git) Kotlin · 153 lines
LoggingSocket.java (git://github.com/willuhn/hbci4java.git) Java · 380 lines
MulticastReceiver.java (http://ops.googlecode.com/svn/trunk/) Java · 149 lines
WhitelistBasedTrustedChannelResolver.java (git://github.com/apache/hadoop-common.git) Java · 119 lines
GroupReceiver.java (http://textmash.googlecode.com/svn/trunk/) Java · 154 lines
NtpITest.java (https://github.com/apache/directory-server.git) Java · 108 lines
TFTPPacket.java (git://pkgs.fedoraproject.org/apache-commons-net) Java · 248 lines
SocksSocketTest.java (https://bitbucket.org/openesb/openesb-components.git) Java · 631 lines
DatagramSocketClient.java (https://bitbucket.org/openesb/openesb-components.git) Java · 273 lines
NetUtils.java
(http://h2database.googlecode.com/svn/trunk/)
Java · 282 lines
✨ Summary
This Java class provides utility functions for working with sockets, including creating loopback and client sockets, server sockets, and checking if a socket is connected to a local address. It also handles exceptions and caching of certain values for performance. The class is designed to be used in a database context, likely H2 Database.
This Java class provides utility functions for working with sockets, including creating loopback and client sockets, server sockets, and checking if a socket is connected to a local address. It also handles exceptions and caching of certain values for performance. The class is designed to be used in a database context, likely H2 Database.
MessageOut.java (git://github.com/apache/cassandra.git) Java · 154 lines
IPExpression.java (http://metastudio.googlecode.com/svn/trunk/) Java · 284 lines
MessagePayload.java (http://jsendnsca.googlecode.com/svn/trunk/) Java · 257 lines
MulticastOutputStream.java (http://dataturbine.googlecode.com/svn/trunk/) Java · 257 lines
PooledBatchManager.java (https://cmusphinx.svn.sourceforge.net/svnroot/cmusphinx) Java · 289 lines
SMTPService.java (http://subetha.googlecode.com/svn/trunk/) Java · 198 lines
TestInetAddressPoint.java (git://github.com/apache/lucene-solr.git) Java · 177 lines
SocketEndPoint.java (git://pkgs.fedoraproject.org/jetty) Java · 282 lines
EasySSLProtocolSocketFactory.java
(https://bitbucket.org/atlassian/connector-commons)
Java · 318 lines
✨ Summary
This Java code implements a custom socket factory for creating secure connections using SSL/TLS encryption. It provides methods for creating sockets with various parameters, including host and port, connection timeouts, and automatic close. The class uses a custom trust manager to handle certificate validation and ensures secure communication over the network.
This Java code implements a custom socket factory for creating secure connections using SSL/TLS encryption. It provides methods for creating sockets with various parameters, including host and port, connection timeouts, and automatic close. The class uses a custom trust manager to handle certificate validation and ensures secure communication over the network.
46 import java.io.FileNotFoundException;
47 import java.io.IOException;
48 import java.net.InetAddress;
49 import java.net.InetSocketAddress;
50 import java.net.Socket;
221 /**
222 * @see SecureProtocolSocketFactory#createSocket(java.lang.String,int,java.net.InetAddress,int)
223 */
224 public Socket createSocket(
SSLSocketFactory.cs (git://github.com/koush/androidmono.git) C# · 133 lines
91 }
92 internal static global::MonoJavaBridge.MethodId _createSocket16049;
93 public override global::java.net.Socket createSocket(java.lang.String arg0, int arg1, java.net.InetAddress arg2, int arg3)
94 {
95 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
100 }
101 internal static global::MonoJavaBridge.MethodId _createSocket16050;
102 public override global::java.net.Socket createSocket(java.net.InetAddress arg0, int arg1)
103 {
104 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
109 }
110 internal static global::MonoJavaBridge.MethodId _createSocket16051;
111 public override global::java.net.Socket createSocket(java.net.InetAddress arg0, int arg1, java.net.InetAddress arg2, int arg3)
112 {
113 global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
WebappListener.java (git://pkgs.fedoraproject.org/opengrok) Java · 88 lines
NioClient.java (http://coder-fragment.googlecode.com/svn/trunk/) Java · 242 lines
BotlistUniqueId.java (http://ainotebook.googlecode.com/svn/trunk/) Java · 104 lines
Message.java (http://wastelanders.googlecode.com/svn/trunk/) Java · 268 lines
AdministrationServiceImpl.java (https://bitbucket.org/jwesonga/androidopenmrs) Java · 993 lines
WakeUpComputerTask.java (http://androbuntu.googlecode.com/svn/trunk/) Java · 119 lines
RtspServerStackImpl.java
(http://mobicents.googlecode.com/svn/trunk/)
Java · 161 lines
✨ Summary
This Java code implements a basic RTSP (Real-Time Streaming Protocol) server using Netty framework. It creates a server that listens for incoming connections, processes HTTP requests and responses, and notifies an external listener of any events. The server can be started and stopped, and it uses multiple threads to handle incoming requests concurrently.
This Java code implements a basic RTSP (Real-Time Streaming Protocol) server using Netty framework. It creates a server that listens for incoming connections, processes HTTP requests and responses, and notifies an external listener of any events. The server can be started and stopped, and it uses multiple threads to handle incoming requests concurrently.
IPPacket.java (http://ids-with-prolog.googlecode.com/svn/trunk/) Java · 290 lines
AddressMemcachedSessionComparatorUnitTest.java (git://github.com/killme2008/xmemcached.git) Java · 280 lines
NetworkInterfaceRuntimeHandler.java (git://github.com/jbossas/jboss-as.git) Java · 81 lines
NativeDatagramPacketArray.java (git://github.com/netty/netty.git) Java · 178 lines
NioNetwork.java (git://github.com/JPaxos/JPaxos.git) Java · 199 lines
NoClientBindProtocolSocketFactory.java (git://github.com/kohsuke/hudson.git) Java · 126 lines
MachineList.java (git://github.com/apache/hadoop-common.git) Java · 210 lines
X10ServerSocketObjectPool.java (http://taiyaki.googlecode.com/svn/trunk/) Java · 197 lines
TestHttpHost.java (https://github.com/apache/httpcore.git) Java · 240 lines
StandardSocketFactory.java (http://tesis-matlab-estanques.googlecode.com/svn/trunk/) Java · 208 lines
RtpStreamReceiver.java (git://github.com/bigbluebutton/bigbluebutton.git) Java · 174 lines
UrlServiceImpl.scala (http://oseeatwhu.googlecode.com/svn/trunk/) Scala · 252 lines
Client.java (http://ift-585.googlecode.com/svn/trunk/) Java · 143 lines
NioServer.java (http://offsync.googlecode.com/svn/trunk/) Java · 210 lines
SocksSocket.java (https://code.google.com/p/sshtunnel/) Java · 339 lines
Netlog.java (http://arronwork.googlecode.com/svn/trunk/) Java · 209 lines
ThriftServer.java (git://github.com/apache/cassandra.git) Java · 121 lines
RemoteAddressFilter.java
(http://google-enterprise-connector-manager.googlecode.com/svn/trunk/)
Java · 140 lines
✨ Summary
This Java class, RemoteAddressFilter
, is a singleton that restricts access to servlets based on the caller’s IP address. It determines whether an incoming request is allowed to proceed by checking if the caller’s IP address matches specific patterns (e.g., localhost, GSA host). The filter can be used in conjunction with other filters or valves to control access to servlets.
This Java class, RemoteAddressFilter
, is a singleton that restricts access to servlets based on the caller’s IP address. It determines whether an incoming request is allowed to proceed by checking if the caller’s IP address matches specific patterns (e.g., localhost, GSA host). The filter can be used in conjunction with other filters or valves to control access to servlets.