X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=client.h;h=a68507f982916f44878f42ac185e7b8528bb38cd;hp=ea297897957a4a9073a6fd24ebf50947785a74a7;hb=ed727a4632fa3195f31758c79e209ca8d524bbc4;hpb=ebbd89cc6ffba30a73818a48c8bb64a70517823c diff --git a/client.h b/client.h index ea297897..a68507f9 100644 --- a/client.h +++ b/client.h @@ -56,6 +56,7 @@ typedef void (*client_probe_op)(struct fio_client *client, struct fio_net_cmd *c typedef void (*client_thread_status_display_op)(char *status_message, double perc); typedef void (*client_quit_op)(struct fio_client *); typedef void (*client_add_job_op)(struct fio_client *, struct fio_net_cmd *); +typedef void (*client_timed_out)(struct fio_client *); struct client_ops { client_text_op_func text_op; @@ -66,6 +67,7 @@ struct client_ops { client_probe_op probe; client_quit_op quit; client_add_job_op add_job; + client_timed_out timed_out; int stay_connected; };