public RemoteSocket socket(int family, int type) {
return socket(family, type, 0);
}
public RemoteSocket socket(int family, int type, int protocol) {
PushyObject socketObject =
(PushyObject)socketMethod.__call__(new Object[]{
new Integer(family),
new Integer(type),
new Integer(protocol)});
return new RemoteSocket(client, socketObject);