=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/misc.h,v retrieving revision 1.4.2.3 retrieving revision 1.5 diff -u -r1.4.2.3 -r1.5 --- src/usr.bin/ssh/misc.h 2002/06/02 22:56:10 1.4.2.3 +++ src/usr.bin/ssh/misc.h 2001/05/03 23:09:52 1.5 @@ -1,4 +1,4 @@ -/* $OpenBSD: misc.h,v 1.4.2.3 2002/06/02 22:56:10 miod Exp $ */ +/* $OpenBSD: misc.h,v 1.5 2001/05/03 23:09:52 mouring Exp $ */ /* * Author: Tatu Ylonen @@ -11,23 +11,24 @@ * 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); -char *chop(char *); -char *strdelim(char **); -void set_nonblock(int); -void unset_nonblock(int); -void set_nodelay(int); -int a2port(const char *); -char *cleanhostname(char *); -char *colon(char *); -long convtime(const char *); +/* return next token in configuration line */ +char *strdelim(char **s); -struct passwd *pwcopy(struct passwd *); +/* set filedescriptor to non-blocking */ +void set_nonblock(int fd); -typedef struct arglist arglist; -struct arglist { - char **list; - int num; - int nalloc; -}; -void addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3))); +struct passwd * pwcopy(struct passwd *pw); + +/* + * 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);