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:
parent
9038b8b4d3
commit
3b95ff5ebb
2 changed files with 8 additions and 18 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue