Roger Abelenda wrote:
I also need to make other classes in my implementation (apart of the
Datagrams) visible by any class when i'm using the "modifyed" jvm. I'm
meaning thath those classes can be imported without setting nothing
after compiling de jvm. I want to make them part of the standard
classpath. Suggestions?
Any supporting/implementation classes will likely need to be on the boot
class path. Depending on how you are making this available this means
they'll be in rt.jar or some other JAR file on your boot class path. Is
your interest only UDP? If not, then I assume you will also need to
think about the Socket classes and also create your own SelectorProvider
so that NIO channels can use your IPv6 stack.
-Alan.