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

* gnu/java/nio/natSocketChannelImpl.cc
	(SocketConnect): This is not implemented yet.
	(SocketBind): This is not implemented yet.

From-SVN: r62833
This commit is contained in:
Michael Koch 2003-02-13 08:50:52 +00:00 committed by Michael Koch
parent 9038b8b4d3
commit 3b95ff5ebb
2 changed files with 8 additions and 18 deletions

View File

@ -1,3 +1,9 @@
2003-02-13 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/natSocketChannelImpl.cc
(SocketConnect): This is not implemented yet.
(SocketBind): This is not implemented yet.
2003-02-13 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/natByteBufferImpl.cc,

View File

@ -38,15 +38,7 @@ gnu::java::nio::SocketChannelImpl::SocketConnect (jint fd,
::java::net::InetAddress *addr,
jint port)
{
int result = _Jv_connect_address (fd, addr, port, addr, port);
if (result < 0)
{
char* strerr = strerror (errno);
throw new ::java::io::IOException (JvNewStringUTF (strerr));
}
return result;
throw new ::java::io::IOException (JvNewStringUTF ("SocketConnect not implemented"));
}
jint
@ -54,15 +46,7 @@ gnu::java::nio::SocketChannelImpl::SocketBind (jint fd,
::java::net::InetAddress *addr,
jint port)
{
int result = _Jv_bind_address (fd, addr, port);
if (result < 0)
{
char* strerr = strerror (errno);
throw new ::java::io::IOException (JvNewStringUTF (strerr));
}
return result;
throw new ::java::io::IOException (JvNewStringUTF ("SocketBind not implemented"));
}
jint