createTempFile()

2003-07-22 Thread Dr. Torsten Rupp
Dear Classpath members, I yust added a fix to java.io.File.createTempFile() to limit the filename to 8+3 characters, such that it also runs on DOS-filesystems. To create a temporary file with an unique name I also limited the prefix to max. 7 characters to be able to create a filename for a

Re: Datagram sockets: SO_BROADCAST

2003-07-22 Thread Dr. Torsten Rupp
Dear Brian, I think you can call _javanet_set_option for the datagram case in _javanet_create(), however you need to add the SO_BROADCAST case and link up the setBroadcast to it in Java. I added such a call in my copy here. I will commit the changes soon. Sincerely, Torsten

Patch

2003-07-22 Thread Chris Dailey
The following patch is an attempt to fix this difference: http://japi.sab39.org/htmlout/h-jdk11-classpath.html#err_bad_java_lang Bad * field java.lang.reflect.Member.DECLARED: constant [1] in jdk11, but not constant in classpath * field java.lang.reflect.Member.PUBLIC: constant [0] in jdk11,

Re: Datagram sockets: SO_BROADCAST

2003-07-22 Thread Dr. Torsten Rupp
Dear Mark, The 1.4 API doc for java.net.SocketOptions indicates that SO_BROADCAST is set by default for DatagramSockets. This also seems to be what libgcj does.

Re: Patch

2003-07-22 Thread Tom Tromey
Chris == Chris Dailey [EMAIL PROTECTED] writes: Chris The following patch is an attempt to fix this difference: Chris http://japi.sab39.org/htmlout/h-jdk11-classpath.html#err_bad_java_lang Chris * field java.lang.reflect.Member.DECLARED: constant [1] in jdk11, Chris but not constant in

Re: Patch

2003-07-22 Thread Stuart Ballard
Tom Tromey wrote: Chris == Chris Dailey [EMAIL PROTECTED] writes: Chris The following patch is an attempt to fix this difference: Chris http://japi.sab39.org/htmlout/h-jdk11-classpath.html#err_bad_java_lang Chris * field java.lang.reflect.Member.DECLARED: constant [1] in jdk11, Chris but not