view mcabber/src/commands.h @ 1261:704adf4df2d0

Send service-unavailable when Last Activity is disabled According to XEP-0012, the client should return a <service-unavailable/> error when it doesn't wish to divulge the information. This patch also adds a new option: iq_last_disable_when_notavail.
author Mikael Berthe <mikael@lilotux.net>
date Sun, 01 Jul 2007 12:22:54 +0200
parents 16abe7ec3056
children 61a54e172010
line wrap: on
line source

#ifndef __COMMANDS_H__
#define __COMMANDS_H__ 1

#include <glib.h>

// Command structure
typedef struct {
  char name[32];
  const char *help;
  guint completion_flags[2];
  void (*func)(char *);
} cmd;

void cmd_init(void);
cmd *cmd_get(const char *command);
int  process_line(char *line);
int  process_command(char *line, guint iscmd);
char *expandalias(char *line);

extern char *mcabber_version(void);
extern void mcabber_connect(void);

void room_whois(gpointer bud, char *nick_locale, guint interactive);
void room_leave(gpointer bud, char *arg);
void setstatus(const char *recipient, const char *arg);

#endif /* __COMMANDS_H__ */

/* vim: set expandtab cindent cinoptions=>2\:2(0:  For Vim users... */