summaryrefslogtreecommitdiff
path: root/libjava/java/net/Inet6Address.h
diff options
context:
space:
mode:
authorupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
committerupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
commit554fd8c5195424bdbcabf5de30fdc183aba391bd (patch)
tree976dc5ab7fddf506dadce60ae936f43f58787092 /libjava/java/net/Inet6Address.h
downloadcbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.bz2
cbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.xz
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig; imported gcc-4.6.4 source tree from verified upstream tarball. downloading a git-generated archive based on the 'upstream' tag should provide you with a source tree that is binary identical to the one extracted from the above tarball. if you have obtained the source via the command 'git clone', however, do note that line-endings of files in your working directory might differ from line-endings of the respective files in the upstream repository.
Diffstat (limited to 'libjava/java/net/Inet6Address.h')
-rw-r--r--libjava/java/net/Inet6Address.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/libjava/java/net/Inet6Address.h b/libjava/java/net/Inet6Address.h
new file mode 100644
index 000000000..933a4780a
--- /dev/null
+++ b/libjava/java/net/Inet6Address.h
@@ -0,0 +1,66 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __java_net_Inet6Address__
+#define __java_net_Inet6Address__
+
+#pragma interface
+
+#include <java/net/InetAddress.h>
+#include <gcj/array.h>
+
+extern "Java"
+{
+ namespace java
+ {
+ namespace net
+ {
+ class Inet6Address;
+ class NetworkInterface;
+ }
+ }
+}
+
+class java::net::Inet6Address : public ::java::net::InetAddress
+{
+
+public: // actually package-private
+ Inet6Address(JArray< jbyte > *, ::java::lang::String *);
+public:
+ jboolean isMulticastAddress();
+ jboolean isAnyLocalAddress();
+ jboolean isLoopbackAddress();
+ jboolean isLinkLocalAddress();
+ jboolean isSiteLocalAddress();
+ jboolean isMCGlobal();
+ jboolean isMCNodeLocal();
+ jboolean isMCLinkLocal();
+ jboolean isMCSiteLocal();
+ jboolean isMCOrgLocal();
+ JArray< jbyte > * getAddress();
+ static ::java::net::Inet6Address * getByAddress(::java::lang::String *, JArray< jbyte > *, jint);
+ static ::java::net::Inet6Address * getByAddress(::java::lang::String *, JArray< jbyte > *, ::java::net::NetworkInterface *);
+ ::java::net::NetworkInterface * getScopedInterface();
+ jint getScopeId();
+ ::java::lang::String * getHostAddress();
+ jint hashCode();
+ jboolean equals(::java::lang::Object *);
+ jboolean isIPv4CompatibleAddress();
+private:
+ void readObject(::java::io::ObjectInputStream *);
+ void writeObject(::java::io::ObjectOutputStream *);
+public: // actually package-private
+ static const jlong serialVersionUID = 6880410070516793377LL;
+ JArray< jbyte > * __attribute__((aligned(__alignof__( ::java::net::InetAddress)))) ipaddress;
+private:
+ jint scope_id;
+ jboolean scope_id_set;
+ jboolean scope_ifname_set;
+ ::java::lang::String * ifname;
+ ::java::net::NetworkInterface * nif;
+ static const jint AF_INET6 = 10;
+public:
+ static ::java::lang::Class class$;
+};
+
+#endif // __java_net_Inet6Address__