Skip to content

Commit

Permalink
frstrans.idl: add definition of frstrans_EstablishConnection()
Browse files Browse the repository at this point in the history
metze
  • Loading branch information
metze-samba committed Jul 27, 2009
1 parent 8860a03 commit e31a92c
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion librpc/idl/frstrans.idl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,23 @@ interface frstrans

/*****************/
/* Function 0x01 */
[todo] void FRSTRANS_ESTABLISH_CONNECTION();
typedef [v1_enum,flag(NDR_PAHEX)] enum {
FRSTRANS_PROTOCOL_VERSION_W2K3R2 = 0x00050000,
FRSTRANS_PROTOCOL_VERSION_LONGHORN_SERVER = 0x00050002
} frstrans_ProtocolVersion;

typedef [bitmap32bit] bitmap {
FRSTRANS_TRANSPORT_SUPPORTS_RDC_SIMILARITY = 0x00000001
} frstrans_TransportFlags;

WERROR frstrans_EstablishConnection(
[in] GUID replica_set_guid,
[in] GUID connection_guid,
[in] frstrans_ProtocolVersion downstream_protocol_version,
[in] frstrans_TransportFlags downstream_flags,
[out,ref] frstrans_ProtocolVersion *upstream_protocol_version,
[out,ref] frstrans_TransportFlags *upstream_flags
);

/*****************/
/* Function 0x02 */
Expand Down

0 comments on commit e31a92c

Please sign in to comment.