This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: status of java.net
- From: Tom Tromey <tromey at redhat dot com>
- To: "Erik Poupaert" <erik dot poupaert at chello dot be>
- Cc: <java at gcc dot gnu dot org>
- Date: 09 Jan 2003 12:16:36 -0700
- Subject: Re: status of java.net
- References: <POEIJGMGPFPGFHAGKFHAEEJKCDAA.erik.poupaert@chello.be>
- Reply-to: tromey at redhat dot com
>>>>> "Erik" == Erik Poupaert <erik.poupaert@chello.be> writes:
Erik> It seems that natPlainDatagramSocketImpl.cc and
Erik> natPlainSocketImpl.cc contain a large number of unimplemented
Erik> methods. Does anybody know what the status is of java.net?
java.net should work fine. There are some things missing (for
instance I think the http connector doesn't implement all the 1.1
features), but most methods are there.
Most likely you're seeing the "unimplemented" methods that we use when
networking support is disabled. On platforms without networking
support (e.g., newlib-based embedded targets) we disable all the
java.net native code.
Tom