- introduced <controller> actions function for listing actions
- introduced <controller> reconnect function
This commit is contained in:
8
ascon.h
8
ascon.h
@ -35,11 +35,17 @@ Ascon *AsconMake(SConnection * con, int argc, char *argv[]);
|
||||
* \param a the connection to be killed
|
||||
*/
|
||||
void AsconKill(Ascon * a);
|
||||
/** \brief Disconnect function
|
||||
/** \brief disconnect and disable
|
||||
* \param a the connection to disconnect
|
||||
*/
|
||||
void AsconDisconnect(Ascon * a);
|
||||
|
||||
/** \brief Reconnect function
|
||||
* \param a the connection to reconnect
|
||||
* \param hostport <host>:<port> to reconnect to (empty for reconnecting to the same port)
|
||||
*/
|
||||
void AsconReconnect(Ascon * a, char *hostport);
|
||||
|
||||
/** \brief the task handler. To be called repeatedly.
|
||||
* \param a the connection
|
||||
* \return the state of the connection
|
||||
|
Reference in New Issue
Block a user