Changeset 272 for trunk/include
- Timestamp:
- Jan 27, 2010, 10:52:20 PM (15 years ago)
- Location:
- trunk/include
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/sh_error_min.h
r265 r272 25 25 long errnum, unsigned long msg_index, ...); 26 26 27 /* this function should be called to (only) send mail 28 */ 29 void sh_error_mail (const char * alias, int sev, 30 const char * file, long line, 31 long status, unsigned long msg_id, ...); 32 27 33 /* convert a string to a numeric priority 28 34 */ -
trunk/include/sh_fifo.h
r214 r272 68 68 sh_string * tag_list (SH_FIFO * fifo, char * tag, 69 69 int(*check)(int, const char*, const char*, const void*), 70 const void * info );70 const void * info, int okNull); 71 71 void rollback_list (SH_FIFO * fifo); 72 72 void mark_list (SH_FIFO * fifo); -
trunk/include/sh_log_evalrule.h
r265 r272 49 49 enum policies policy; 50 50 int severity; 51 sh_string * alias; 51 52 time_t interval; /* if EVAL_SUM, interval */ 52 53 struct sh_qeval * next; … … 56 57 57 58 int sh_log_lookup_severity(const char * str); 59 sh_string * sh_log_lookup_alias(const char * str); 58 60 59 61 #endif -
trunk/include/sh_mail_int.h
r232 r272 25 25 dnsrep * mx_list; 26 26 int severity; 27 int send_mail; 27 short send_mail; 28 short isAlias; 28 29 sh_filter_type * mail_filter; 29 30 struct alias * next; -
trunk/include/slib.h
r252 r272 220 220 221 221 /* 222 * robust strn cmp replacement222 * robust strn[case]cmp replacement 223 223 */ 224 224 int sl_strncmp(const char * a, const char * b, size_t n); 225 226 int sl_strncasecmp(const char * a, const char * b, size_t n); 225 227 226 228 /*
Note:
See TracChangeset
for help on using the changeset viewer.