blob: d907871df15653b7735d63d75fb6cbce5c561146 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __gnu_java_net_PlainSocketImpl__
#define __gnu_java_net_PlainSocketImpl__
#pragma interface
#include <java/net/SocketImpl.h>
extern "Java"
{
namespace gnu
{
namespace java
{
namespace net
{
class PlainSocketImpl;
}
}
}
namespace java
{
namespace net
{
class InetAddress;
class InetSocketAddress;
class SocketAddress;
class SocketImpl;
}
}
}
class gnu::java::net::PlainSocketImpl : public ::java::net::SocketImpl
{
public:
jboolean isInChannelOperation();
void setInChannelOperation(jboolean);
PlainSocketImpl();
public: // actually protected
void finalize();
public:
jint getNativeFD();
void setOption(jint, ::java::lang::Object *);
::java::lang::Object * getOption(jint);
void shutdownInput();
void shutdownOutput();
void create(jboolean);
public: // actually protected
void connect(::java::lang::String *, jint);
void connect(::java::net::InetAddress *, jint);
void connect(::java::net::SocketAddress *, jint);
void bind(::java::net::InetAddress *, jint);
void listen(jint);
void accept(::java::net::SocketImpl *);
private:
void accept(::gnu::java::net::PlainSocketImpl *);
public: // actually protected
jint available();
void close();
void sendUrgentData(jint);
public:
::java::net::InetSocketAddress * getLocalAddress();
public: // actually protected
::java::io::InputStream * getInputStream();
::java::io::OutputStream * getOutputStream();
public: // actually package-private
static const jint _Jv_TCP_NODELAY_ = 1;
static const jint _Jv_SO_BINDADDR_ = 15;
static const jint _Jv_SO_REUSEADDR_ = 4;
static const jint _Jv_SO_BROADCAST_ = 32;
static const jint _Jv_SO_OOBINLINE_ = 4099;
static const jint _Jv_IP_MULTICAST_IF_ = 16;
static const jint _Jv_IP_MULTICAST_IF2_ = 31;
static const jint _Jv_IP_MULTICAST_LOOP_ = 18;
static const jint _Jv_IP_TOS_ = 3;
static const jint _Jv_SO_LINGER_ = 128;
static const jint _Jv_SO_TIMEOUT_ = 4102;
static const jint _Jv_SO_SNDBUF_ = 4097;
static const jint _Jv_SO_RCVBUF_ = 4098;
static const jint _Jv_SO_KEEPALIVE_ = 8;
jint __attribute__((aligned(__alignof__( ::java::net::SocketImpl)))) native_fd;
jint timeout;
::java::net::InetAddress * localAddress;
::java::net::InetSocketAddress * localSocketAddress;
private:
::java::io::InputStream * in;
::java::io::OutputStream * out;
jboolean inChannelOperation;
public:
static ::java::lang::Class class$;
};
#endif // __gnu_java_net_PlainSocketImpl__
|