You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Tony Wu (JIRA)" <ji...@apache.org> on 2007/01/05 09:23:27 UTC

[jira] Created: (HARMONY-2942) [classlib][luni]UDP socket is not able to send package to 0.0.0.0

[classlib][luni]UDP socket is not able to send package to 0.0.0.0
-----------------------------------------------------------------

                 Key: HARMONY-2942
                 URL: https://issues.apache.org/jira/browse/HARMONY-2942
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
            Reporter: Tony Wu


Following testcase passes on RI whereas throws SocketException on Harmony.

 public void test() throws IOException {
        Socket s = new Socket("0.0.0.0", 80, false);
        OutputStream os = s.getOutputStream();
        os.write(1);
    }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (HARMONY-2942) [classlib][luni]UDP socket is not able to send package to 0.0.0.0

Posted by "Tony Wu (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2942?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tony Wu updated HARMONY-2942:
-----------------------------

    Attachment: harmony-2942.diff

> [classlib][luni]UDP socket is not able to send package to 0.0.0.0
> -----------------------------------------------------------------
>
>                 Key: HARMONY-2942
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2942
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Tony Wu
>         Attachments: harmony-2942.diff
>
>
> Following testcase passes on RI whereas throws SocketException on Harmony.
>  public void test() throws IOException {
>         Socket s = new Socket("0.0.0.0", 80, false);
>         OutputStream os = s.getOutputStream();
>         os.write(1);
>     }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (HARMONY-2942) [classlib][luni]UDP socket is not able to send package to 0.0.0.0

Posted by "Tony Wu (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-2942?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12462933 ] 

Tony Wu commented on HARMONY-2942:
----------------------------------

Verified at r493917. Thanks Tim.

> [classlib][luni]UDP socket is not able to send package to 0.0.0.0
> -----------------------------------------------------------------
>
>                 Key: HARMONY-2942
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2942
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Tony Wu
>         Assigned To: Tim Ellison
>         Attachments: harmony-2942.diff
>
>
> Following testcase passes on RI whereas throws SocketException on Harmony.
>  public void test() throws IOException {
>         Socket s = new Socket("0.0.0.0", 80, false);
>         OutputStream os = s.getOutputStream();
>         os.write(1);
>     }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Assigned: (HARMONY-2942) [classlib][luni]UDP socket is not able to send package to 0.0.0.0

Posted by "Tim Ellison (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2942?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tim Ellison reassigned HARMONY-2942:
------------------------------------

    Assignee: Tim Ellison

> [classlib][luni]UDP socket is not able to send package to 0.0.0.0
> -----------------------------------------------------------------
>
>                 Key: HARMONY-2942
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2942
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Tony Wu
>         Assigned To: Tim Ellison
>         Attachments: harmony-2942.diff
>
>
> Following testcase passes on RI whereas throws SocketException on Harmony.
>  public void test() throws IOException {
>         Socket s = new Socket("0.0.0.0", 80, false);
>         OutputStream os = s.getOutputStream();
>         os.write(1);
>     }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (HARMONY-2942) [classlib][luni]UDP socket is not able to send package to 0.0.0.0

Posted by "Tony Wu (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-2942?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12462442 ] 

Tony Wu commented on HARMONY-2942:
----------------------------------

patch attached, would you please try it? Thanks a lot!

> [classlib][luni]UDP socket is not able to send package to 0.0.0.0
> -----------------------------------------------------------------
>
>                 Key: HARMONY-2942
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2942
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Tony Wu
>         Attachments: harmony-2942.diff
>
>
> Following testcase passes on RI whereas throws SocketException on Harmony.
>  public void test() throws IOException {
>         Socket s = new Socket("0.0.0.0", 80, false);
>         OutputStream os = s.getOutputStream();
>         os.write(1);
>     }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Resolved: (HARMONY-2942) [classlib][luni]UDP socket is not able to send package to 0.0.0.0

Posted by "Tim Ellison (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2942?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tim Ellison resolved HARMONY-2942.
----------------------------------

    Resolution: Fixed

Thanks Tony.

Patch applied to LUNI module at repo revision r492985.

Please check that the patch was applied as you expected.


> [classlib][luni]UDP socket is not able to send package to 0.0.0.0
> -----------------------------------------------------------------
>
>                 Key: HARMONY-2942
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2942
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Tony Wu
>         Assigned To: Tim Ellison
>         Attachments: harmony-2942.diff
>
>
> Following testcase passes on RI whereas throws SocketException on Harmony.
>  public void test() throws IOException {
>         Socket s = new Socket("0.0.0.0", 80, false);
>         OutputStream os = s.getOutputStream();
>         os.write(1);
>     }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (HARMONY-2942) [classlib][luni]UDP socket is not able to send package to 0.0.0.0

Posted by "Tim Ellison (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2942?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tim Ellison closed HARMONY-2942.
--------------------------------


Verified by Tony.


> [classlib][luni]UDP socket is not able to send package to 0.0.0.0
> -----------------------------------------------------------------
>
>                 Key: HARMONY-2942
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2942
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Tony Wu
>         Assigned To: Tim Ellison
>         Attachments: harmony-2942.diff
>
>
> Following testcase passes on RI whereas throws SocketException on Harmony.
>  public void test() throws IOException {
>         Socket s = new Socket("0.0.0.0", 80, false);
>         OutputStream os = s.getOutputStream();
>         os.write(1);
>     }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (HARMONY-2942) [classlib][luni]UDP socket is not able to send package to 0.0.0.0

Posted by "Tony Wu (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2942?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tony Wu updated HARMONY-2942:
-----------------------------

    Patch Info: [Patch Available]

> [classlib][luni]UDP socket is not able to send package to 0.0.0.0
> -----------------------------------------------------------------
>
>                 Key: HARMONY-2942
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2942
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Tony Wu
>         Attachments: harmony-2942.diff
>
>
> Following testcase passes on RI whereas throws SocketException on Harmony.
>  public void test() throws IOException {
>         Socket s = new Socket("0.0.0.0", 80, false);
>         OutputStream os = s.getOutputStream();
>         os.write(1);
>     }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira