Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. else if ( sysMode == SlmSysMode.PL2000AD_FAMILY_100G_40G_6x10G.getValue()
  2.                 && ((portNum >= 1 && portNum <= 6) || portNum == 21 || portNum == 25) ) {
  3.             if ( portNum >= 1 && portNum <= 6 ) {
  4.                 // 10G QSFP Service ports types
  5.                 getPL2000ADSrvTypesQSFPPort(dp, list);
  6.             } else if ( portNum == 21 || portNum == 25 ) {
  7.                 // Muxponder 40G
  8.                 getPL2000ADSrvTypesQSFPPort(dp, list);
  9.                 // Transponder 100G
  10.                 getPL2000ADSrvTypesQSFP28Port(dp, list);
  11.             }
  12.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement