2001-06-23 23:37:38 +04:00
|
|
|
/* $NetBSD: misc.h,v 1.5 2001/06/23 19:37:39 itojun Exp $ */
|
|
|
|
/* $OpenBSD: misc.h,v 1.8 2001/05/19 19:43:57 stevesk Exp $ */
|
2001-02-07 19:46:40 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
*
|
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
|
|
|
*/
|
|
|
|
/* remove newline at end of string */
|
|
|
|
char *chop(char *s);
|
|
|
|
|
|
|
|
/* return next token in configuration line */
|
|
|
|
char *strdelim(char **s);
|
|
|
|
|
2001-05-15 19:26:07 +04:00
|
|
|
/* set/unset filedescriptor to non-blocking */
|
2001-02-07 19:46:40 +03:00
|
|
|
void set_nonblock(int fd);
|
2001-05-15 19:26:07 +04:00
|
|
|
void unset_nonblock(int fd);
|
2001-03-19 22:42:00 +03:00
|
|
|
|
|
|
|
struct passwd * pwcopy(struct passwd *pw);
|
2001-05-15 19:26:07 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Convert ASCII string to TCP/IP port number.
|
|
|
|
* Port must be >0 and <=65535.
|
|
|
|
* Return 0 if invalid.
|
|
|
|
*/
|
|
|
|
int a2port(const char *s);
|
|
|
|
|
|
|
|
/* code from scp.c/rcp.c */
|
|
|
|
char *cleanhostname(char *host);
|
|
|
|
char *colon(char *cp);
|
|
|
|
|
2001-06-23 23:37:38 +04:00
|
|
|
/*
|
|
|
|
* Convert a time string into seconds; format is
|
|
|
|
* a sequence of:
|
|
|
|
* time[qualifier]
|
|
|
|
*
|
|
|
|
* Valid time qualifiers are:
|
|
|
|
* <none> seconds
|
|
|
|
* s|S seconds
|
|
|
|
* m|M minutes
|
|
|
|
* h|H hours
|
|
|
|
* d|D days
|
|
|
|
* w|W weeks
|
|
|
|
*
|
|
|
|
* Examples:
|
|
|
|
* 90m 90 minutes
|
|
|
|
* 1h30m 90 minutes
|
|
|
|
* 2d 2 days
|
|
|
|
* 1w 1 week
|
|
|
|
*
|
|
|
|
* Return -1 if time string is invalid.
|
|
|
|
*/
|
|
|
|
|
|
|
|
long convtime(const char *s);
|
|
|
|
|
2001-05-15 19:26:07 +04:00
|
|
|
/* function to assist building execv() arguments */
|
|
|
|
typedef struct arglist arglist;
|
|
|
|
struct arglist {
|
|
|
|
char **list;
|
|
|
|
int num;
|
|
|
|
int nalloc;
|
|
|
|
};
|
|
|
|
|
|
|
|
void addargs(arglist *args, char *fmt, ...) __attribute__((format(printf, 2, 3)));
|