]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - include/scache.h
Add explicit support for being installed into a system triggered with --enable-fhs...
[irc/rqf/shadowircd.git] / include / scache.h
index 9c7fc277331c2dedc5a44e14e9641ce5fbeef989..aecfe05ad3b78aba20bedd61e29035dfa2a7fc5a 100644 (file)
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
  *  USA
  *
- *  $Id: scache.h 6 2005-09-10 01:02:21Z nenolod $
  */
 
 #ifndef INCLUDED_scache_h
 #define INCLUDED_scache_h
 
+struct Client;
+struct scache_entry;
+
 extern void clear_scache_hash_table(void);
-extern const char *find_or_add(const char *name);
+extern struct scache_entry *scache_connect(const char *name, const char *info, int hidden);
+extern void scache_split(struct scache_entry *ptr);
+extern const char *scache_get_name(struct scache_entry *ptr);
+extern void scache_send_flattened_links(struct Client *source_p);
+extern void scache_send_missing(struct Client *source_p);
 extern void count_scache(size_t *, size_t *);
 
 #endif