mirror of
https://github.com/EnergyMech/energymech.git
synced 2025-12-29 16:14:43 +00:00
reorganizing3
This commit is contained in:
16
src/h.h
16
src/h.h
@@ -161,7 +161,7 @@ void purge_banlist(Chan *);
|
||||
void channel_massmode(const Chan *, char *, int, char, char);
|
||||
void channel_massunban(Chan *, char *, time_t);
|
||||
ChanUser *find_chanuser(Chan *, const char *);
|
||||
void remove_chanuser(Chan *, char *);
|
||||
void remove_chanuser(Chan *, const char *);
|
||||
void make_chanuser(char *, char *);
|
||||
void purge_chanusers(Chan *);
|
||||
char *get_nuh(ChanUser *);
|
||||
@@ -198,8 +198,8 @@ Server *find_server(int id);
|
||||
int try_server(Server *sp, char *hostname);
|
||||
void connect_to_server(void);
|
||||
void register_with_server(void);
|
||||
int sub_compile_timer(int limit, ulong *flags1, ulong *flags2, char *args);
|
||||
int compile_timer(HookTimer *timer, char *rest);
|
||||
int sub_compile_timer(int, uint32_t *, uint32_t *, char *);
|
||||
int compile_timer(HookTimer *, char *);
|
||||
void update(SequenceTime *this);
|
||||
void parse_server_input(void);
|
||||
void do_version(COMMAND_ARGS) __page(CMD1_SEG);
|
||||
@@ -239,7 +239,7 @@ void strflags(char *dst, const DEFstruct *flagsstruct, int flags);
|
||||
const char *strdef(const DEFstruct *dtab, int num);
|
||||
const char *funcdef(const DEFstruct *dtab, void *func);
|
||||
void memreset(void);
|
||||
void memtouch(void *addr);
|
||||
void memtouch(const void *addr);
|
||||
const char *proc_lookup(void *addr, int size);
|
||||
char *atime(time_t when);
|
||||
void debug_server(Server *sp, char *pad);
|
||||
@@ -249,7 +249,7 @@ void debug_botinfo(BotInfo *binfo);
|
||||
void debug_botnet(void);
|
||||
void debug_core(void);
|
||||
void debug_rawdns(void);
|
||||
char *ulong2bin(int limit, ulong x);
|
||||
char *uint32tobin(int limit, uint32_t x);
|
||||
void debug_scripthook(void);
|
||||
void run_debug(void);
|
||||
int wrap_debug(void);
|
||||
@@ -271,7 +271,7 @@ void select_rawdns(void);
|
||||
void process_rawdns(void);
|
||||
char *poll_rawdns(char *hostname);
|
||||
int read_dnsroot(char *line);
|
||||
ulong rawdns_get_ip(const char *host);
|
||||
uint32_t rawdns_get_ip(const char *host);
|
||||
void do_dnsroot(COMMAND_ARGS) __page(CMD1_SEG);
|
||||
void do_dnsserver(COMMAND_ARGS) __page(CMD1_SEG);
|
||||
void do_dns(COMMAND_ARGS) __page(CMD1_SEG);
|
||||
@@ -517,7 +517,7 @@ void parse_346(char *from, char *rest);
|
||||
void parse_348(char *from, char *rest);
|
||||
void parse_368(char *from, char *rest);
|
||||
void parse_005(char *from, char *rest);
|
||||
ulong stringhash(char *s);
|
||||
uint32_t stringhash(char *s);
|
||||
void parseline(char *rest);
|
||||
|
||||
/* partyline.c */
|
||||
@@ -620,7 +620,7 @@ void do_clearshit(COMMAND_ARGS) __page(CMD1_SEG);
|
||||
|
||||
/* socket.c */
|
||||
|
||||
LS ulong get_ip(const char *) __page(CORE_SEG);
|
||||
LS uint32_t get_ip(const char *) __page(CORE_SEG);
|
||||
LS void SockFlags(int) __page(CORE_SEG);
|
||||
LS int SockOpts(void) __page(CORE_SEG);
|
||||
LS int SockListener(int) __page(CORE_SEG);
|
||||
|
||||
Reference in New Issue
Block a user