public inbox for java-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* Patch: FYI: PR 31626
@ 2007-04-19 20:38 Tom Tromey
  2007-04-20  7:58 ` [cp-patches] " Mark Wielaard
  0 siblings, 1 reply; 2+ messages in thread
From: Tom Tromey @ 2007-04-19 20:38 UTC (permalink / raw)
  To: GCJ-patches; +Cc: GNU Classpath Patches

I'm checking this in on the gcc trunk, the RH 4.1 branch, and
Classpath.

This is a patch from Casey to fix PR 31626.  The bug here is that we
are missing a method that Mylar uses.

Tom

Index: ChangeLog
from  Casey Marshall  <csm@gnu.org>

	PR classpath/31626:
	* gnu/javax/net/ssl/provider/SSLSocketFactoryImpl.java
	(createSocket): New method.

Index: gnu/javax/net/ssl/provider/SSLSocketFactoryImpl.java
===================================================================
--- gnu/javax/net/ssl/provider/SSLSocketFactoryImpl.java	(revision 123959)
+++ gnu/javax/net/ssl/provider/SSLSocketFactoryImpl.java	(working copy)
@@ -132,4 +132,12 @@
     socket.connect(new InetSocketAddress(host, port));
     return socket;
   }
+
+  /* (non-Javadoc)
+   * @see javax.net.SocketFactory#createSocket()
+   */
+  @Override public Socket createSocket() throws IOException
+  {
+    return new SSLSocketImpl(contextImpl, null, -1, new Socket(), true);
+  }
 }

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [cp-patches] Patch: FYI: PR 31626
  2007-04-19 20:38 Patch: FYI: PR 31626 Tom Tromey
@ 2007-04-20  7:58 ` Mark Wielaard
  0 siblings, 0 replies; 2+ messages in thread
From: Mark Wielaard @ 2007-04-20  7:58 UTC (permalink / raw)
  To: tromey; +Cc: GCJ-patches, GNU Classpath Patches

[-- Attachment #1: Type: text/plain, Size: 366 bytes --]

On Thu, 2007-04-19 at 14:21 -0600, Tom Tromey wrote:
> I'm checking this in on the gcc trunk, the RH 4.1 branch, and
> Classpath.

Now also added to the classpath-0.95 release branch.
> from  Casey Marshall  <csm@gnu.org>
> 
> 	PR classpath/31626:
> 	* gnu/javax/net/ssl/provider/SSLSocketFactoryImpl.java
> 	(createSocket): New method.

Thanks,

Mark

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-04-20  7:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-04-19 20:38 Patch: FYI: PR 31626 Tom Tromey
2007-04-20  7:58 ` [cp-patches] " Mark Wielaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).