Commit 39637149 authored by garciay's avatar garciay
Browse files

Add templates for Nat64 ATS

parent a98e32e1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -35,9 +35,9 @@ module Ats6RD_Interfaces {
    
    group mtcDesc {
        
        type component SIxRDComponent extends LibIpv6Node {
        type component SixRDComponent extends LibIpv6Node {
            
        } // End of component SIxRDComponent
        } // End of component SixRDComponent
        
    } // End of group mtcDesc
    
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ module Ats6RD_TestCases {
             * @reference [TS: 6.8.9.3] Feature: 6RD Configuration
             * @see     ETSI TS xxx xxx-x V0.0.1.5a-draft (2014-01) TP/6RD/GWPA/VB/01
             */
            testcase TC_6RD_GWPA_BV_001() runs on SIxRDComponent system TestAdapter {
            testcase TC_6RD_GWPA_BV_001() runs on SixRDComponent system TestAdapter {
                
                // Local variables
                
+10 −0
Original line number Diff line number Diff line
/*
 *  @author     STF 440
 *  @version    $Id$
 *  @desc       This module defines the ATS interface
 */
module AtsNat64_Functions {
    
    // LibCommon
    
} // End of module AtsNat64_Functions
 No newline at end of file
+52 −0
Original line number Diff line number Diff line
/*
 *  @author     STF 440
 *  @version    $Id$
 *  @desc       This module defines the ATS interface
 */
module AtsNat64_Interfaces {
    
    // LibCommon
    
    // LibIPv6
    import from LibIpv6_CommonRfcs_TypesAndValues {
        type Ipv6Address 
    };
    import from LibIpv6_Interface_TypesAndValues {
        type 
            LibIpv6Node,
            Ipv4Port, Ipv6Port 
    };
    
    group systemDesc {
        
        /**
         * @desc System interface description
         * @member ipv4Port IPv4 port to be mapped to the Test Adapter
         * @member ipPort IPv6 port to be mapped to the Test Adapter
         */
        type component TestAdapter {
            /** IPv4 port. Only UDP protocol is used */
            port Ipv4Port ipv4Port;
            /** IPv6 port. Only UDP protocol is used */
            port Ipv6Port ipPort;
        } // End of type TestAdapter
        
    } // End of component TestAdapter
    
    group mtcDesc {
        
        type component Nat64Component extends LibIpv6Node {
            
        } // End of component Nat64Component
        
    } // End of group mtcDesc
    
    group componentDesc {
        
        group componentPorts {
            
        } // End of group componentPorts
        
    } // End of group componentDesc
    
} // End of module AtsNat64_Interfaces
 No newline at end of file
+10 −0
Original line number Diff line number Diff line
/*
 *  @author     STF 440
 *  @version    $Id$
 *  @desc       This module defines the ATS interface
 */
module AtsNat64_Pics {
    
    // LibCommon
    
} // End of module AtsNat64_Pics
 No newline at end of file
Loading