diff options
author | Pavel Březina <pbrezina@redhat.com> | 2017-09-22 10:47:30 +0200 |
---|---|---|
committer | Pavel Březina <pbrezina@redhat.com> | 2017-09-22 10:47:30 +0200 |
commit | 044c893b05b297f4f21f33e4d214cc68018c960b (patch) | |
tree | fcbf2c99edf25c1b4123d1b809d9272c4c6020b0 /src/responder/ifp/ifp_iface_generated.h | |
parent | 11a030ac6e064c50759b5397e1f4d0289f87f64a (diff) | |
download | sssd-ifpping.tar.gz sssd-ifpping.tar.xz sssd-ifpping.zip |
IFP: parse ping arguments in codegenifpping
Diffstat (limited to 'src/responder/ifp/ifp_iface_generated.h')
-rw-r--r-- | src/responder/ifp/ifp_iface_generated.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/responder/ifp/ifp_iface_generated.h b/src/responder/ifp/ifp_iface_generated.h index 3dd4355e6..30752bf06 100644 --- a/src/responder/ifp/ifp_iface_generated.h +++ b/src/responder/ifp/ifp_iface_generated.h @@ -130,7 +130,7 @@ /* vtable for org.freedesktop.sssd.infopipe */ struct iface_ifp { struct sbus_vtable vtable; /* derive from sbus_vtable */ - sbus_msg_handler_fn Ping; + int (*Ping)(struct sbus_request *req, void *data, const char *arg_ping); int (*ListComponents)(struct sbus_request *req, void *data); int (*ListResponders)(struct sbus_request *req, void *data); int (*ListBackends)(struct sbus_request *req, void *data); @@ -143,6 +143,9 @@ struct iface_ifp { int (*ListDomains)(struct sbus_request *req, void *data); }; +/* finish function for Ping */ +int iface_ifp_Ping_finish(struct sbus_request *req, const char *arg_pong); + /* finish function for ListComponents */ int iface_ifp_ListComponents_finish(struct sbus_request *req, const char *arg_components[], int len_components); |