iPXE
fcmgmt.h
Go to the documentation of this file.
1#ifndef _USR_FCMGMT_H
2#define _USR_FCMGMT_H
3
4/** @file
5 *
6 * Fibre Channel management
7 *
8 */
9
10FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11
12struct fc_port;
13struct fc_peer;
14struct fc_els_handler;
15
16extern void fcportstat ( struct fc_port *port );
17extern void fcpeerstat ( struct fc_peer *peer );
18extern int fcels ( struct fc_port *port, struct fc_port_id *peer_port_id,
19 struct fc_els_handler *handler );
20
21#endif /* _USR_FCMGMT_H */
u8 port
Port number.
Definition CIB_PRM.h:3
void fcportstat(struct fc_port *port)
Print status of Fibre Channel port.
Definition fcmgmt.c:45
int fcels(struct fc_port *port, struct fc_port_id *peer_port_id, struct fc_els_handler *handler)
Issue Fibre Channel ELS.
Definition fcmgmt.c:105
void fcpeerstat(struct fc_peer *peer)
Print status of Fibre Channel peer.
Definition fcmgmt.c:68
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
struct mschapv2_challenge peer
Peer challenge.
Definition mschapv2.h:1
A Fibre Channel extended link services handler.
Definition fcels.h:353
A Fibre Channel peer.
Definition fc.h:341
A Fibre Channel port identifier.
Definition fc.h:38
A Fibre Channel port.
Definition fc.h:253