PlainSocketImpl.java (read): Remove declaration.
* gnu/java/net/PlainSocketImpl.java (read): Remove declaration. (write): Likewise. (SocketInputStream, SocketOutputStream): Declare `read' and `write' native. Remove implementations which called back into PlainSocketImpl. Remove unneccessary overridden methods. * gnu/java/net/natPlainSocketImplNoNet.cc (read): Move implementation to inner class PlainSocketImpl.SocketInputStream. (write): Likewise. * gnu/java/net/natPlainSocketImplPosix.cc: As above. * gnu/java/net/natPlainSocketImplWin32.cc: As above. * gnu/java/net/SocketInputStream.java: Remove unused file. * gnu/java/net/SocketOutputStream.java: Likewise. * Makefile.am: Build CNI headers for PlainSocketImpl.SocketInputStream and SocketOutputStream. * Makefile.in: Rebuilt. From-SVN: r71724
This commit is contained in:
parent
b9f2972f1e
commit
9b7fe786e1
9 changed files with 85 additions and 458 deletions
|
@ -10,6 +10,8 @@ details. */
|
|||
#include <platform.h>
|
||||
|
||||
#include <gnu/java/net/PlainSocketImpl.h>
|
||||
#include <gnu/java/net/PlainSocketImpl$SocketInputStream.h>
|
||||
#include <gnu/java/net/PlainSocketImpl$SocketOutputStream.h>
|
||||
#include <java/io/IOException.h>
|
||||
#include <java/net/BindException.h>
|
||||
#include <java/net/ConnectException.h>
|
||||
|
@ -65,28 +67,30 @@ gnu::java::net::PlainSocketImpl::getOption (jint)
|
|||
}
|
||||
|
||||
jint
|
||||
gnu::java::net::PlainSocketImpl::read(void)
|
||||
gnu::java::net::PlainSocketImpl$SocketInputStream::read(void)
|
||||
{
|
||||
throw new ::java::net::SocketException (
|
||||
JvNewStringLatin1 ("SocketImpl.read: unimplemented"));
|
||||
}
|
||||
|
||||
jint
|
||||
gnu::java::net::PlainSocketImpl::read(jbyteArray buffer, jint offset, jint count)
|
||||
gnu::java::net::PlainSocketImpl$SocketInputStream::read(jbyteArray buffer,
|
||||
jint offset, jint count)
|
||||
{
|
||||
throw new ::java::net::SocketException (
|
||||
JvNewStringLatin1 ("SocketImpl.read: unimplemented"));
|
||||
}
|
||||
|
||||
void
|
||||
gnu::java::net::PlainSocketImpl::write(jint b)
|
||||
gnu::java::net::PlainSocketImpl$SocketOutputStream::write(jint b)
|
||||
{
|
||||
throw new ::java::net::SocketException (
|
||||
JvNewStringLatin1 ("SocketImpl.write: unimplemented"));
|
||||
}
|
||||
|
||||
void
|
||||
gnu::java::net::PlainSocketImpl::write(jbyteArray b, jint offset, jint len)
|
||||
gnu::java::net::PlainSocketImpl$SocketOutputStream::write(jbyteArray b,
|
||||
jint offset, jint len)
|
||||
{
|
||||
throw new ::java::net::SocketException (
|
||||
JvNewStringLatin1 ("SocketImpl.write: unimplemented"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue