Commit bb7dd383 by Michael Koch Committed by Michael Koch

natSocketChannelImpl.cc: Added support for platforms without network support.

2003-02-19  Michael Koch  <konqueror@gmx.de>

	* gnu/java/nio/natSocketChannelImpl.cc:
	Added support for platforms without network support.

From-SVN: r63155
parent 905280ac
2003-02-19 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/natSocketChannelImpl.cc:
Added support for platforms without network support.
2003-02-19 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* gnu/gcj/runtime/natStackTrace.cc: Include platform.h immediately
......
// natSelectorImpl.cc
// natSocketChannelImpl.cc
/* Copyright (C) 2002 Free Software Foundation
/* Copyright (C) 2002, 2003 Free Software Foundation
This file is part of libgcj.
......@@ -19,6 +19,62 @@ details. */
#include <java/net/InetAddress.h>
#include <java/net/SocketException.h>
#ifndef DISABLE_JAVA_NET
jint
gnu::java::nio::SocketChannelImpl::SocketCreate ()
{
throw new ::java::io::IOException (JvNewStringUTF ("SocketCreate not implemented"));
}
jint
gnu::java::nio::SocketChannelImpl::SocketConnect (jint,
::java::net::InetAddress *,
jint)
{
throw new ::java::io::IOException (JvNewStringUTF ("SocketConnect not implemented"));
}
jint
gnu::java::nio::SocketChannelImpl::SocketBind (jint, ::java::net::InetAddress *,
jint)
{
throw new ::java::io::IOException (JvNewStringUTF ("SocketBind not implemented"));
}
jint
gnu::java::nio::SocketChannelImpl::SocketListen (jint, jint)
{
throw new ::java::io::IOException (JvNewStringUTF ("SocketList not implemented"));
}
jint
gnu::java::nio::SocketChannelImpl::SocketAvailable (jint)
{
throw new ::java::net::SocketException (JvNewStringLatin1 ("SocketAvailable: not implemented"));
}
jint
gnu::java::nio::SocketChannelImpl::SocketClose (jint)
{
throw new ::java::net::SocketException (JvNewStringLatin1 ("SocketClose: not implemented"));
}
jint
gnu::java::nio::SocketChannelImpl::SocketRead (jint, jbyteArray, jint, jint)
{
throw new ::java::net::SocketException (JvNewStringLatin1 ("SocketRead: not implemented"));
}
jint
gnu::java::nio::SocketChannelImpl::SocketWrite (jint, jbyteArray, jint, jint)
{
throw new ::java::net::SocketException (JvNewStringLatin1 ("SocketWrite: not implemented"));
}
#else
jint
gnu::java::nio::SocketChannelImpl::SocketCreate ()
{
......@@ -112,3 +168,5 @@ gnu::java::nio::SocketChannelImpl::SocketWrite (jint fd, jbyteArray data,
return result;
}
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment