Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/fabrics/include/mxl/fabrics.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,19 +73,19 @@ extern "C"
} mxlFabricsInterfaceCapFlags;

/** Capabilities of an interface */
typedef struct mxlFabricsCaps_t
typedef struct mxlFabricsInterfaceCaps_t
{
int version; /**< Struct version, must be set to MXL_FABRICS_API_VERSION by the caller. */
uint64_t flags; /**< Capabilities expressed as binary flags. Value can be a bitset of any of mxlFabricsInterfaceCapFlags */
uint64_t maxMessageSize; /**< Maximum message size supported on this interface. */
} mxlFabricsCaps;
} mxlFabricsInterfaceCaps;

/** Fabric interface configuration */
typedef struct mxlFabricsInterfaceConfig_t
{
int version; /**< Struct version, must be set to MXL_FABRICS_API_VERSION by the caller. */
mxlFabricsProvider provider; /**< The provider that the interface can be used with */
mxlFabricsCaps caps; /**< Interface capabilities */
mxlFabricsInterfaceCaps caps; /**< Interface capabilities */
mxlFabricsEndpointAddress address; /**< Address (node/service) of this interface */

/**
Expand Down
Loading