OTS 1.1 NO IDEA Avatar
  1. OMG Issue

OTS11 — Anonymous types in OTS

  • Key: OTS11-21
  • Legacy Issue Number: 3762
  • Status: open  
  • Source: Triodia Technologies Pty Ltd ( Michi Henning)
  • Summary:

    CORBA 2.4 deprecates anonymous types, but there are two in the OTS spec:

    struct otid_t

    { long format_id; /* format identifier. 0 is OSI TP */ long bqual_length; sequence <Octet> tid; }

    ;

    struct PropagationContext

    { unsigned long timeout; TransIdentity current; sequence <TransIdentity> parents; any implementation_specific_data; }

    ;

    I think we should use:

    struct otid_t

    { long format_id; /* format identifier. 0 is OSI TP */ long bqual_length; CORBA::OctetSeq tid; }

    ;

    typedef sequence<TransIdentity> TransIdentitySeq;

    struct PropagationContext

    { unsigned long timeout; TransIdentity current; TransIdentitySeq parents; any implementation_specific_data; }

    ;

  • Reported: OTS 1.0b1 — Tue, 25 Jul 2000 04:00 GMT
  • Updated: Fri, 6 Mar 2015 20:57 GMT