Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

adalan_1411's avatar
adalan_1411
Icon for Nimbostratus rankNimbostratus
Jul 29, 2009

iControl.CommonIPPortDefinition[][]

NM, this can be deleted.

3 Replies

  • Hmm, C is not my strong suit either, but try this:

     

     

    members_to_remove[0][0].member.address = "10.10.10.10";

     

    members_to_remove[0][0].member.port = Convert.ToInt32("80");

     

  • Do you mind posting your solution? Even if you answered your own question?
  • You'll want something like this:

     iControl.CommonIPPortDefinition[][] members_to_remove = new CommonIPPortDefinition[1][];   
      allocate first dimension to a 1-d array for the 2nd dimension.  
     members_to_remove[0] = new iControl.CommonIPPortDefinition[1];  
      allocate the second dimension element to a new IPPortDefinition structure.  
     members_to_remove[0][0] = new iControl.CommonIPPortDefinition();  
      add values  
     members_to_remove[0][0].address = "10.10.10.10";   
     members_to_remove[0][0].port = 80;

    -Joe