Sha256: 74666bdb8fca59b1db9d07715681b7fdea889475a43e6d8108e179c73be67884
Contents?: true
Size: 451 Bytes
Versions: 72
Compression:
Stored size: 451 Bytes
Contents
package com.rhomobile.rhodes.socket; import java.io.IOException; import java.net.InetSocketAddress; import java.net.Socket; public class RhoSocket extends Socket { public RhoSocket(int sockfd, RhoSockAddr remote) throws IOException { super(new RhoSocketImpl(sockfd, remote)); // Dummy line, need to get correctly initialized internal states ('created', 'bound', 'connected') connect(new InetSocketAddress(remote.host, remote.port)); } }
Version data entries
72 entries across 72 versions & 1 rubygems