You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Regis Xu (JIRA)" <ji...@apache.org> on 2010/02/08 08:09:28 UTC

[jira] Commented: (HARMONY-6413) [java6][classlib][luni]DatagramSock do NOT throw IllegalArgumentException

    [ https://issues.apache.org/jira/browse/HARMONY-6413?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12830857#action_12830857 ] 

Regis Xu commented on HARMONY-6413:
-----------------------------------

As discussion in HARMONY-6412, I'll apply Harmony-6413_v3.diff to java5 trunk.


> [java6][classlib][luni]DatagramSock do NOT throw IllegalArgumentException
> -------------------------------------------------------------------------
>
>                 Key: HARMONY-6413
>                 URL: https://issues.apache.org/jira/browse/HARMONY-6413
>             Project: Harmony
>          Issue Type: Sub-task
>          Components: Classlib
>            Reporter: Ray Chen
>            Assignee: Regis Xu
>             Fix For: 6.0M1
>
>         Attachments: Harmony-6413.diff, Harmony-6413_v2.diff, Harmony-6413_v3.diff
>
>
> Run following simple test case, got different results from RI:
> public static void main(String[] args) throws SocketException, IOException {
>        InetSocketAddress sa = InetSocketAddress.createUnresolved("localhost",0);
>        new DatagramSocket().send(new DatagramPacket(new byte[272], 3, sa));
> }
> RI 6:
> Exception in thread "main" java.lang.IllegalArgumentException: unresolved address
>        at java.net.DatagramPacket.setSocketAddress(DatagramPacket.java:295)
>        at java.net.DatagramPacket.<init>(DatagramPacket.java:123)
>        at java.net.DatagramPacket.<init>(DatagramPacket.java:158)
>        at DST2.main(DST2.java:10)
> Harmony 6:  No Exception

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