summaryrefslogtreecommitdiff
path: root/src/nm-act-request.h
Commit message (Collapse)AuthorAgeFilesLines
* core: specify an activation reason for active connectionsBeniamino Galvani2018-04-081-0/+1
| | | | | | Specify a reason when creating active connections. The reason will be used in the next commit to tell whether slaves must be reconnected or not if a master has autoconnect-slaves=yes.
* core: refactor NMActRequestGetSecretsCallId typedef not to be a pointer to ↵Thomas Haller2017-11-241-10/+10
| | | | | | | struct Typedefs to structs are fine, but a typedef for a pointer seems confusing to me. Let's avoid it.
* core: add activation-type property to active-connectionThomas Haller2017-03-161-0/+1
| | | | | It is still unused, but will be useful to mark a connection whether it is a full activation or assumed.
* act-request: allow omitting the @self argument in ↵Thomas Haller2016-12-201-0/+1
| | | | | | | | | | | | | | | | | | | nm_act_request_cancel_secrets() Previously, we would require a @self argument and the @call_id in nm_act_request_cancel_secrets(), although the @call_id already has a pointer to @self. In principle that is not necessary, but it makes the API a bit more robust as you need to care about the lifetime of the @req as well. However it is a bit inconvenient, because it requires that caller to track both the activation request and the call-id. Now, allow nm_act_request_get_secrets() to instruct the call-id to take an additional reference to @self. Later on, we would allow to omit the argument during cancelling. We only allow this, if the call-id takes a reference to @self.
* core: rename "nm-activation-request.[hc]" for NMActRequestThomas Haller2016-10-031-0/+76
"nm-activation-request.[hc]" contains NMActRequest. It should thus be called "nm-act-request.[hc]".