Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / include / jupe.h
diff --git a/include/jupe.h b/include/jupe.h
new file mode 100644 (file)
index 0000000..5c0cf7a
--- /dev/null
@@ -0,0 +1,71 @@
+#ifndef INCLUDED_jupe_h
+#define INCLUDED_jupe_h
+/*
+ * IRC - Internet Relay Chat, include/jupe.h
+ * Copyright (C) 1990 Jarkko Oikarinen and
+ *                    University of Oulu, Computing Center
+ * Copyright (C) 2000 Kevin L. Mitchell <klmitch@mit.edu>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * $Id$
+ */
+#ifndef INCLUDED_config_h
+#include "config.h"
+#endif
+#ifndef INCLUDED_sys_types_h
+#include <sys/types.h>
+#define INCLUDED_sys_types_h
+#endif
+
+
+struct Client;
+
+#define JUPE_MAX_EXPIRE        604800  /* max expire: 7 days */
+
+struct Jupe {
+  struct Jupe*   ju_next;
+  struct Jupe**  ju_prev_p;
+  char*          ju_server;
+  char*          ju_reason;
+  time_t         ju_expire;
+  time_t         ju_lastmod;
+  unsigned int   ju_flags;
+};
+
+#define JUPE_ACTIVE    1
+#define JUPE_LOCAL     2
+
+#define JupeIsActive(j)                ((j)->ju_flags & JUPE_ACTIVE)
+#define JupeIsLocal(j)         ((j)->ju_flags & JUPE_LOCAL)
+
+#define JupeServer(j)          ((j)->ju_server)
+#define JupeReason(j)          ((j)->ju_reason)
+#define JupeLastMod(j)         ((j)->ju_lastmod)
+
+extern int jupe_add(struct Client *cptr, struct Client *sptr, char *server,
+                   char *reason, time_t expire, time_t lastmod, int local,
+                   int active);
+extern int jupe_activate(struct Client *cptr, struct Client *sptr,
+                        struct Jupe *jupe, time_t lastmod);
+extern int jupe_deactivate(struct Client *cptr, struct Client *sptr,
+                          struct Jupe *jupe, time_t lastmod);
+extern struct Jupe* jupe_find(char *server);
+extern void jupe_free(struct Jupe *jupe);
+extern void jupe_burst(struct Client *cptr);
+extern int jupe_resend(struct Client *cptr, struct Jupe *jupe);
+extern int jupe_list(struct Client *sptr, char *server);
+
+#endif /* INCLUDED_jupe_h */