Deleted Added
full compact
alias_local.h (32377) alias_local.h (36321)
1/* -*- mode: c; tab-width: 3; c-basic-offset: 3; -*-
2 Alias_local.h contains the function prototypes for alias.c,
3 alias_db.c, alias_util.c and alias_ftp.c, alias_irc.c (as well
4 as any future add-ons). It is intended to be used only within
5 the aliasing software. Outside world interfaces are defined
6 in alias.h
7
8 This software is placed into the public domain with no restrictions

--- 74 unchanged lines hidden (view full) ---

83
84/* Housekeeping function */
85void HouseKeeping(void);
86
87/* Tcp specfic routines */
88/*lint -save -library Suppress flexelint warnings */
89void AliasHandleFtpOut(struct ip *, struct alias_link *, int);
90void AliasHandleIrcOut(struct ip *pip, struct alias_link *link, int maxsize );
1/* -*- mode: c; tab-width: 3; c-basic-offset: 3; -*-
2 Alias_local.h contains the function prototypes for alias.c,
3 alias_db.c, alias_util.c and alias_ftp.c, alias_irc.c (as well
4 as any future add-ons). It is intended to be used only within
5 the aliasing software. Outside world interfaces are defined
6 in alias.h
7
8 This software is placed into the public domain with no restrictions

--- 74 unchanged lines hidden (view full) ---

83
84/* Housekeeping function */
85void HouseKeeping(void);
86
87/* Tcp specfic routines */
88/*lint -save -library Suppress flexelint warnings */
89void AliasHandleFtpOut(struct ip *, struct alias_link *, int);
90void AliasHandleIrcOut(struct ip *pip, struct alias_link *link, int maxsize );
91void AliasHandleUdpNbt(struct ip *, struct alias_link *, struct in_addr *, u_short);
92void AliasHandleUdpNbtNS(struct ip *, struct alias_link *, struct in_addr *, u_short *, struct in_addr *, u_short *);
91
93
94
95
92enum alias_tcp_state {
93 ALIAS_TCP_STATE_NOT_CONNECTED,
94 ALIAS_TCP_STATE_CONNECTED,
95 ALIAS_TCP_STATE_DISCONNECTED
96};
97
98/*lint -restore */
99#endif /* defined(ALIAS_LOCAL_H) */
96enum alias_tcp_state {
97 ALIAS_TCP_STATE_NOT_CONNECTED,
98 ALIAS_TCP_STATE_CONNECTED,
99 ALIAS_TCP_STATE_DISCONNECTED
100};
101
102/*lint -restore */
103#endif /* defined(ALIAS_LOCAL_H) */