~ubuntu-branches/ubuntu/lucid/openssh/lucid

« back to all changes in this revision

Viewing changes to log.h

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2008-09-30 23:09:58 UTC
  • mfrom: (1.13.3 upstream) (29 hardy)
  • mto: This revision was merged to the branch mainline in revision 43.
  • Revision ID: james.westby@ubuntu.com-20080930230958-o6vsgn8c4mm959s0
Tags: 1:5.1p1-3
* Remove unnecessary ssh-vulnkey output in non-verbose mode when no
  compromised or unknown keys were found (closes: #496495).
* Configure with --disable-strip; dh_strip will deal with stripping
  binaries and will honour DEB_BUILD_OPTIONS (thanks, Bernhard R. Link;
  closes: #498681).
* Fix handling of zero-length server banners (thanks, Tomas Mraz; closes:
  #497026).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $OpenBSD: log.h,v 1.15 2006/08/18 09:13:25 deraadt Exp $ */
 
1
/* $OpenBSD: log.h,v 1.17 2008/06/13 00:12:02 dtucker Exp $ */
2
2
 
3
3
/*
4
4
 * Author: Tatu Ylonen <ylo@cs.hut.fi>
50
50
void     log_init(char *, LogLevel, SyslogFacility, int);
51
51
 
52
52
SyslogFacility  log_facility_number(char *);
53
 
LogLevel log_level_number(char *);
 
53
const char *    log_facility_name(SyslogFacility);
 
54
LogLevel        log_level_number(char *);
 
55
const char *    log_level_name(LogLevel);
54
56
 
55
 
void     fatal(const char *, ...) __dead __attribute__((format(printf, 1, 2)));
 
57
void     fatal(const char *, ...) __attribute__((noreturn))
 
58
    __attribute__((format(printf, 1, 2)));
56
59
void     error(const char *, ...) __attribute__((format(printf, 1, 2)));
57
 
void     sigdie(const char *, ...) __attribute__((format(printf, 1, 2)));
 
60
void     sigdie(const char *, ...)  __attribute__((noreturn))
 
61
    __attribute__((format(printf, 1, 2)));
58
62
void     logit(const char *, ...) __attribute__((format(printf, 1, 2)));
59
63
void     verbose(const char *, ...) __attribute__((format(printf, 1, 2)));
60
64
void     debug(const char *, ...) __attribute__((format(printf, 1, 2)));
62
66
void     debug3(const char *, ...) __attribute__((format(printf, 1, 2)));
63
67
 
64
68
void     do_log(LogLevel, const char *, va_list);
65
 
void     cleanup_exit(int) __dead;
 
69
void     cleanup_exit(int) __attribute__((noreturn));
66
70
#endif