mirror of
https://github.com/ipxe/ipxe
synced 2025-12-21 20:40:25 +03:00
Added plug_plug()
This commit is contained in:
@@ -42,3 +42,18 @@ void plug ( struct interface *intf, struct interface *dest ) {
|
|||||||
ref_get ( dest->refcnt );
|
ref_get ( dest->refcnt );
|
||||||
intf->dest = dest;
|
intf->dest = dest;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plug two interfaces together
|
||||||
|
*
|
||||||
|
* @v a Interface A
|
||||||
|
* @v b Interface B
|
||||||
|
*
|
||||||
|
* Plugs interface A into interface B, and interface B into interface
|
||||||
|
* A. (The basic plug() function is unidirectional; this function is
|
||||||
|
* merely a shorthand for two calls to plug(), hence the name.)
|
||||||
|
*/
|
||||||
|
void plug_plug ( struct interface *a, struct interface *b ) {
|
||||||
|
plug ( a, b );
|
||||||
|
plug ( b, a );
|
||||||
|
}
|
||||||
|
|||||||
@@ -29,5 +29,6 @@ struct interface {
|
|||||||
};
|
};
|
||||||
|
|
||||||
extern void plug ( struct interface *intf, struct interface *dest );
|
extern void plug ( struct interface *intf, struct interface *dest );
|
||||||
|
extern void plug_plug ( struct interface *a, struct interface *b );
|
||||||
|
|
||||||
#endif /* _GPXE_INTERFACE_H */
|
#endif /* _GPXE_INTERFACE_H */
|
||||||
|
|||||||
Reference in New Issue
Block a user