2010-11-08 22:26:23 +00:00
|
|
|
/* $Id: bsd-misc.h,v 1.19 2010/11/08 22:26:23 tim Exp $ */
|
2003-08-29 16:59:52 +00:00
|
|
|
|
1999-10-27 03:42:43 +00:00
|
|
|
/*
|
2004-02-17 05:49:41 +00:00
|
|
|
* Copyright (c) 1999-2004 Damien Miller <djm@mindrot.org>
|
2000-04-03 04:50:43 +00:00
|
|
|
*
|
2004-02-17 05:49:41 +00:00
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
2000-04-03 04:50:43 +00:00
|
|
|
*
|
2004-02-17 05:49:41 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2000-04-03 04:50:43 +00:00
|
|
|
*/
|
2001-02-09 01:55:35 +00:00
|
|
|
|
1999-12-29 14:29:35 +00:00
|
|
|
#ifndef _BSD_MISC_H
|
|
|
|
#define _BSD_MISC_H
|
1999-10-27 03:42:43 +00:00
|
|
|
|
2003-08-29 16:59:52 +00:00
|
|
|
#include "includes.h"
|
1999-10-28 04:12:54 +00:00
|
|
|
|
2003-08-21 23:34:41 +00:00
|
|
|
char *ssh_get_progname(char *);
|
2000-11-17 03:47:20 +00:00
|
|
|
|
2000-11-05 09:08:45 +00:00
|
|
|
#ifndef HAVE_SETSID
|
|
|
|
#define setsid() setpgrp(0, getpid())
|
|
|
|
#endif /* !HAVE_SETSID */
|
|
|
|
|
1999-11-22 05:11:05 +00:00
|
|
|
#ifndef HAVE_SETENV
|
2003-05-18 14:13:38 +00:00
|
|
|
int setenv(const char *, const char *, int);
|
1999-11-22 05:11:05 +00:00
|
|
|
#endif /* !HAVE_SETENV */
|
|
|
|
|
1999-12-30 04:08:44 +00:00
|
|
|
#ifndef HAVE_SETLOGIN
|
2003-05-18 14:13:38 +00:00
|
|
|
int setlogin(const char *);
|
1999-12-30 04:08:44 +00:00
|
|
|
#endif /* !HAVE_SETLOGIN */
|
|
|
|
|
|
|
|
#ifndef HAVE_INNETGR
|
2003-05-18 14:13:38 +00:00
|
|
|
int innetgr(const char *, const char *, const char *, const char *);
|
1999-12-30 04:08:44 +00:00
|
|
|
#endif /* HAVE_INNETGR */
|
|
|
|
|
|
|
|
#if !defined(HAVE_SETEUID) && defined(HAVE_SETREUID)
|
2003-05-18 14:13:38 +00:00
|
|
|
int seteuid(uid_t);
|
1999-12-30 04:08:44 +00:00
|
|
|
#endif /* !defined(HAVE_SETEUID) && defined(HAVE_SETREUID) */
|
|
|
|
|
2001-04-09 14:50:52 +00:00
|
|
|
#if !defined(HAVE_SETEGID) && defined(HAVE_SETRESGID)
|
2003-05-18 14:13:38 +00:00
|
|
|
int setegid(uid_t);
|
2001-04-09 14:50:52 +00:00
|
|
|
#endif /* !defined(HAVE_SETEGID) && defined(HAVE_SETRESGID) */
|
|
|
|
|
2000-08-16 00:35:58 +00:00
|
|
|
#if !defined(HAVE_STRERROR) && defined(HAVE_SYS_ERRLIST) && defined(HAVE_SYS_NERR)
|
2003-05-18 14:13:38 +00:00
|
|
|
const char *strerror(int);
|
2000-08-16 00:35:58 +00:00
|
|
|
#endif
|
2000-07-15 04:59:14 +00:00
|
|
|
|
2001-01-15 02:34:37 +00:00
|
|
|
|
|
|
|
#ifndef HAVE_UTIMES
|
|
|
|
#ifndef HAVE_STRUCT_TIMEVAL
|
|
|
|
struct timeval {
|
|
|
|
long tv_sec;
|
|
|
|
long tv_usec;
|
|
|
|
}
|
|
|
|
#endif /* HAVE_STRUCT_TIMEVAL */
|
|
|
|
|
2003-05-18 14:13:38 +00:00
|
|
|
int utimes(char *, struct timeval *);
|
2001-01-15 02:34:37 +00:00
|
|
|
#endif /* HAVE_UTIMES */
|
|
|
|
|
2002-05-08 02:51:31 +00:00
|
|
|
#ifndef HAVE_TRUNCATE
|
2003-05-18 14:13:38 +00:00
|
|
|
int truncate (const char *, off_t);
|
2002-05-08 02:51:31 +00:00
|
|
|
#endif /* HAVE_TRUNCATE */
|
2001-01-15 02:34:37 +00:00
|
|
|
|
2003-03-18 18:21:40 +00:00
|
|
|
#if !defined(HAVE_NANOSLEEP) && !defined(HAVE_NSLEEP)
|
|
|
|
#ifndef HAVE_STRUCT_TIMESPEC
|
|
|
|
struct timespec {
|
|
|
|
time_t tv_sec;
|
|
|
|
long tv_nsec;
|
|
|
|
};
|
|
|
|
#endif
|
2003-05-18 14:13:38 +00:00
|
|
|
int nanosleep(const struct timespec *, struct timespec *);
|
2003-03-18 18:21:40 +00:00
|
|
|
#endif
|
2002-06-12 16:57:14 +00:00
|
|
|
|
2003-08-02 13:31:42 +00:00
|
|
|
#ifndef HAVE_TCGETPGRP
|
|
|
|
pid_t tcgetpgrp(int);
|
2003-08-13 10:48:07 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_TCSENDBREAK
|
|
|
|
int tcsendbreak(int, int);
|
|
|
|
#endif
|
2003-08-02 13:31:42 +00:00
|
|
|
|
2004-03-08 11:59:03 +00:00
|
|
|
#ifndef HAVE_UNSETENV
|
|
|
|
void unsetenv(const char *);
|
|
|
|
#endif
|
|
|
|
|
2003-08-25 01:16:21 +00:00
|
|
|
/* wrapper for signal interface */
|
|
|
|
typedef void (*mysig_t)(int);
|
|
|
|
mysig_t mysignal(int sig, mysig_t act);
|
|
|
|
|
|
|
|
#define signal(a,b) mysignal(a,b)
|
|
|
|
|
2010-11-08 22:26:23 +00:00
|
|
|
#ifndef HAVE_ISBLANK
|
|
|
|
int isblank(int);
|
|
|
|
#endif
|
|
|
|
|
1999-12-29 14:29:35 +00:00
|
|
|
#endif /* _BSD_MISC_H */
|