You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Nathan Beyer (JIRA)" <ji...@apache.org> on 2007/04/23 04:07:15 UTC

[jira] Closed: (HARMONY-2503) [classlib][luni]ServerSocket refuses connection on 0.0.0.0 after successful connection on localhost

     [ https://issues.apache.org/jira/browse/HARMONY-2503?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Nathan Beyer closed HARMONY-2503.
---------------------------------


> [classlib][luni]ServerSocket refuses connection on 0.0.0.0 after successful connection on localhost
> ---------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2503
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2503
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>         Environment: WinXP
>            Reporter: Nikolay Kuznetsov
>         Assigned To: Nathan Beyer
>         Attachments: Harmony-2503-2.diff, Harmony-2503-3.diff, Harmony-2503.diff, test.java
>
>
> ServerSocket listening on 0.0.0.0 (any_address) refuses connection to 0.0.0.0 if prior to this successful connection was established on localhost:8080 inside same JVM i.e. the following sequence of accept/connect actions results in Connection Refused exception
>  
> ServerSocket(localhost:8080).accept()
> Socket.connect(localhost:8080
> ServerSocket(0:8080).accept()
> Socket.connect(0:8080) -> Connection refused
> while reverse set of actions(first connect to 0 and localhost afterwards) works fine:
> ServerSocket(0:8080).accept()
> Socket.connect(0:8080) 
> ServerSocket(localhost:8080).accept()
> Socket.connect(localhost:8080)
> RI works fine in both cases, attached test demonstrates this problem.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.