PlainSocketImpl.java: Corrected copyright & header comments.

* java/net/PlainSocketImpl.java: Corrected copyright & header comments.
	* java/net/SocketImpl.java: Added marker for JDK 1.2 work.
	* java/net/natPlainSocketImpl.cc (bind): Throw BindException.
	(connect): Throw ConnectException.

From-SVN: r26896
This commit is contained in:
Warren Levy 1999-05-12 01:51:23 +00:00 committed by Warren Levy
parent 3f281ce6f5
commit 7d9a55eb5b
4 changed files with 26 additions and 4 deletions

View file

@ -18,6 +18,8 @@ details. */
#include <cni.h>
#include <java/io/IOException.h>
#include <java/io/FileDescriptor.h>
#include <java/net/BindException.h>
#include <java/net/ConnectException.h>
#include <java/net/PlainSocketImpl.h>
#include <java/net/InetAddress.h>
@ -84,7 +86,7 @@ java::net::PlainSocketImpl::bind (java::net::InetAddress *host, jint lport)
char msg[100];
char* strerr = strerror (errno);
sprintf (msg, "SocketImpl.bind: %.*s", 80, strerr);
JvThrow (new java::io::IOException (JvNewStringUTF (msg)));
JvThrow (new java::net::BindException (JvNewStringUTF (msg)));
}
void
@ -123,7 +125,7 @@ java::net::PlainSocketImpl::connect (java::net::InetAddress *host, jint rport)
char msg[100];
char* strerr = strerror (errno);
sprintf (msg, "SocketImpl.connect: %.*s", 80, strerr);
JvThrow (new java::io::IOException (JvNewStringUTF (msg)));
JvThrow (new java::net::ConnectException (JvNewStringUTF (msg)));
}
void