summaryrefslogtreecommitdiff
path: root/misc.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:46:56 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:46:56 +0000
commit4cc240dabbd81a308f06f2717b1942041fe0e205 (patch)
tree07291c8c2c467fc2ecec9166ed0d8ec1e75631a3 /misc.h
parent5bf5d67d497ed91c19851db6b904d54003afe67e (diff)
- markus@cvs.openbsd.org 2001/06/26 17:27:25
[authfd.h authfile.h auth.h auth-options.h bufaux.h buffer.h canohost.h channels.h cipher.h clientloop.h compat.h compress.h crc32.h deattack.h dh.h dispatch.h groupaccess.c groupaccess.h hostfile.h kex.h key.h log.c log.h mac.h misc.c misc.h mpaux.h packet.h radix.h readconf.h readpass.h rsa.h servconf.h serverloop.h session.h sftp-common.c sftp-common.h sftp-glob.h sftp-int.h sshconnect.h ssh-dss.h sshlogin.h sshpty.h ssh-rsa.h sshtty.h tildexpand.h uidswap.h uuencode.h xmalloc.h] remove comments from .h, since they are cut&paste from the .c files and out of sync
Diffstat (limited to 'misc.h')
-rw-r--r--misc.h58
1 files changed, 10 insertions, 48 deletions
diff --git a/misc.h b/misc.h
index 829208d29..5f0b0aa4f 100644
--- a/misc.h
+++ b/misc.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: misc.h,v 1.9 2001/06/26 06:32:56 itojun Exp $ */ 1/* $OpenBSD: misc.h,v 1.10 2001/06/26 17:27:24 markus Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -11,54 +11,16 @@
11 * incompatible with the protocol description in the RFC file, it must be 11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell". 12 * called by a name other than "ssh" or "Secure Shell".
13 */ 13 */
14/* remove newline at end of string */
15char *chop(char *);
16 14
17/* return next token in configuration line */ 15char *chop(char *);
18char *strdelim(char **); 16char *strdelim(char **);
17void set_nonblock(int);
18void unset_nonblock(int);
19int a2port(const char *);
20char *cleanhostname(char *);
21char *colon(char *);
22long convtime(const char *);
19 23
20/* set/unset filedescriptor to non-blocking */
21void set_nonblock(int);
22void unset_nonblock(int);
23
24struct passwd * pwcopy(struct passwd *);
25
26/*
27 * Convert ASCII string to TCP/IP port number.
28 * Port must be >0 and <=65535.
29 * Return 0 if invalid.
30 */
31int a2port(const char *);
32
33/* code from scp.c/rcp.c */
34char *cleanhostname(char *);
35char *colon(char *);
36
37/*
38 * Convert a time string into seconds; format is
39 * a sequence of:
40 * time[qualifier]
41 *
42 * Valid time qualifiers are:
43 * <none> seconds
44 * s|S seconds
45 * m|M minutes
46 * h|H hours
47 * d|D days
48 * w|W weeks
49 *
50 * Examples:
51 * 90m 90 minutes
52 * 1h30m 90 minutes
53 * 2d 2 days
54 * 1w 1 week
55 *
56 * Return -1 if time string is invalid.
57 */
58
59long convtime(const char *);
60
61/* function to assist building execv() arguments */
62typedef struct arglist arglist; 24typedef struct arglist arglist;
63struct arglist { 25struct arglist {
64 char **list; 26 char **list;
@@ -66,7 +28,7 @@ struct arglist {
66 int nalloc; 28 int nalloc;
67}; 29};
68 30
69void addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3))); 31void addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3)));
70 32
71/* wrapper for signal interface */ 33/* wrapper for signal interface */
72typedef void (*mysig_t)(int); 34typedef void (*mysig_t)(int);