static inline int ac_jain_pong(as_p the_as,unsigned char processor_id,unsigned int flags,char *action,int len) { unsigned int seqno; int k; k=0; net2hostL(seqno,action,k); process_pong(&the_as->jain_pings,seqno); return 0; }
static void process_control (CockpitChannel *self, const gchar *command, JsonObject *options) { CockpitChannelClass *klass; const gchar *problem; if (g_str_equal (command, "close")) { g_debug ("close channel %s", self->priv->id); if (!cockpit_json_get_string (options, "problem", NULL, &problem)) problem = NULL; cockpit_channel_close (self, problem); return; } if (g_str_equal (command, "ping")) { process_ping (self, options); return; } else if (g_str_equal (command, "pong")) { process_pong (self, options); return; } else if (g_str_equal (command, "done")) { if (self->priv->received_done) cockpit_channel_fail (self, "protocol-error", "channel received second done"); else self->priv->received_done = TRUE; } klass = COCKPIT_CHANNEL_GET_CLASS (self); if (klass->control) (klass->control) (self, command, options); }