2005-02-26 00:07:37 +01:00
|
|
|
/* $Id: bsd-misc.h,v 1.18 2005/02/25 23:07:38 dtucker Exp $ */
|
2003-08-29 18:59:52 +02:00
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
/*
|
2004-02-17 06:49:41 +01:00
|
|
|
* Copyright (c) 1999-2004 Damien Miller <djm@mindrot.org>
|
2000-04-03 06:50:43 +02:00
|
|
|
*
|
2004-02-17 06:49:41 +01: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 06:50:43 +02:00
|
|
|
*
|
2004-02-17 06:49:41 +01: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 06:50:43 +02:00
|
|
|
*/
|
2001-02-09 02:55:35 +01:00
|
|
|
|
1999-12-29 15:29:35 +01:00
|
|
|
#ifndef _BSD_MISC_H
|
|
|
|
#define _BSD_MISC_H
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2003-08-29 18:59:52 +02:00
|
|
|
#include "includes.h"
|
1999-10-28 06:12:54 +02:00
|
|
|
|
2003-08-22 01:34:41 +02:00
|
|
|
char *ssh_get_progname(char *);
|
2000-11-17 04:47:20 +01:00
|
|
|
|
2000-11-05 10:08:45 +01:00
|
|
|
#ifndef HAVE_SETSID
|
|
|
|
#define setsid() setpgrp(0, getpid())
|
|
|
|
#endif /* !HAVE_SETSID */
|
|
|
|
|
1999-11-22 06:11:05 +01:00
|
|
|
#ifndef HAVE_SETENV
|
2003-05-18 16:13:38 +02:00
|
|
|
int setenv(const char *, const char *, int);
|
1999-11-22 06:11:05 +01:00
|
|
|
#endif /* !HAVE_SETENV */
|
|
|
|
|
1999-12-30 05:08:44 +01:00
|
|
|
#ifndef HAVE_SETLOGIN
|
2003-05-18 16:13:38 +02:00
|
|
|
int setlogin(const char *);
|
1999-12-30 05:08:44 +01:00
|
|
|
#endif /* !HAVE_SETLOGIN */
|
|
|
|
|
|
|
|
#ifndef HAVE_INNETGR
|
2003-05-18 16:13:38 +02:00
|
|
|
int innetgr(const char *, const char *, const char *, const char *);
|
1999-12-30 05:08:44 +01:00
|
|
|
#endif /* HAVE_INNETGR */
|
|
|
|
|
|
|
|
#if !defined(HAVE_SETEUID) && defined(HAVE_SETREUID)
|
2003-05-18 16:13:38 +02:00
|
|
|
int seteuid(uid_t);
|
1999-12-30 05:08:44 +01:00
|
|
|
#endif /* !defined(HAVE_SETEUID) && defined(HAVE_SETREUID) */
|
|
|
|
|
2001-04-09 16:50:52 +02:00
|
|
|
#if !defined(HAVE_SETEGID) && defined(HAVE_SETRESGID)
|
2003-05-18 16:13:38 +02:00
|
|
|
int setegid(uid_t);
|
2001-04-09 16:50:52 +02:00
|
|
|
#endif /* !defined(HAVE_SETEGID) && defined(HAVE_SETRESGID) */
|
|
|
|
|
2000-08-16 02:35:58 +02:00
|
|
|
#if !defined(HAVE_STRERROR) && defined(HAVE_SYS_ERRLIST) && defined(HAVE_SYS_NERR)
|
2003-05-18 16:13:38 +02:00
|
|
|
const char *strerror(int);
|
2000-08-16 02:35:58 +02:00
|
|
|
#endif
|
2000-07-15 06:59:14 +02:00
|
|
|
|
2001-01-15 03:34:37 +01:00
|
|
|
|
|
|
|
#ifndef HAVE_UTIMES
|
|
|
|
#ifndef HAVE_STRUCT_TIMEVAL
|
|
|
|
struct timeval {
|
|
|
|
long tv_sec;
|
|
|
|
long tv_usec;
|
|
|
|
}
|
|
|
|
#endif /* HAVE_STRUCT_TIMEVAL */
|
|
|
|
|
2003-05-18 16:13:38 +02:00
|
|
|
int utimes(char *, struct timeval *);
|
2001-01-15 03:34:37 +01:00
|
|
|
#endif /* HAVE_UTIMES */
|
|
|
|
|
2002-05-08 04:51:31 +02:00
|
|
|
#ifndef HAVE_TRUNCATE
|
2003-05-18 16:13:38 +02:00
|
|
|
int truncate (const char *, off_t);
|
2002-05-08 04:51:31 +02:00
|
|
|
#endif /* HAVE_TRUNCATE */
|
2001-01-15 03:34:37 +01:00
|
|
|
|
2003-03-18 19:21:40 +01: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 16:13:38 +02:00
|
|
|
int nanosleep(const struct timespec *, struct timespec *);
|
2003-03-18 19:21:40 +01:00
|
|
|
#endif
|
2002-06-12 18:57:14 +02:00
|
|
|
|
2003-08-02 15:31:42 +02:00
|
|
|
#ifndef HAVE_TCGETPGRP
|
|
|
|
pid_t tcgetpgrp(int);
|
2003-08-13 12:48:07 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_TCSENDBREAK
|
|
|
|
int tcsendbreak(int, int);
|
|
|
|
#endif
|
2003-08-02 15:31:42 +02:00
|
|
|
|
2004-03-08 12:59:03 +01:00
|
|
|
#ifndef HAVE_UNSETENV
|
|
|
|
void unsetenv(const char *);
|
|
|
|
#endif
|
|
|
|
|
2003-08-25 03:16:21 +02: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)
|
|
|
|
|
1999-12-29 15:29:35 +01:00
|
|
|
#endif /* _BSD_MISC_H */
|