cake
/
libp7
Archived
1
0
Fork 1
This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
libp7/src/packet/send_roleswp.c

29 lines
1.1 KiB
C

/* ************************************************************************** */
/* _____ _ */
/* packet/send_roleswp.c |_ _|__ _ _| |__ ___ _ _ */
/* | Project: libp7 | |/ _ \| | | | '_ \ / _ \ | | | */
/* | | (_) | |_| | | | | __/ |_| | */
/* By: thomas <thomas@touhey.fr> |_|\___/ \__,_|_| |_|\___|\__, |.fr */
/* Last updated: 2016/10/13 07:33:17 |___/ */
/* */
/* ************************************************************************** */
#include <libp7/internals.h>
/**
* p7_send_roleswp:
* Invoke a roleswap.
*
* Causes devices to switch roles. Active becomes passive and vice versa.
*
* @arg handle the libp7 handle
* @return if it worked
*/
int p7_send_roleswp(p7_handle_t *handle)
{
/* as we can only send this when we're active, put role to passive */
handle->_active = 0;
/* send packet */
return (p7_send_basic(handle, p7_pt_roleswp, 0, 1));
}