summaryrefslogtreecommitdiff
path: root/sshlogin.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:07:12 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:07:12 +0000
commitb4c774cf8878d9100fde92ff4e938671c3b0301b (patch)
treea2dff9a498a7c4cdeddace98c2c34c7a2e3689fb /sshlogin.h
parent16ae3d0dba5f81e5602798b915105284033dea75 (diff)
- itojun@cvs.openbsd.org 2001/06/26 06:33:07
[servconf.h serverloop.h session.h sftp-client.h sftp-common.h sftp-glob.h sftp-int.h sshconnect.h ssh-dss.h sshlogin.h sshpty.h ssh-rsa.h tildexpand.h uidswap.h uuencode.h xmalloc.h] prototype pedant. not very creative... - () -> (void) - no variable names
Diffstat (limited to 'sshlogin.h')
-rw-r--r--sshlogin.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/sshlogin.h b/sshlogin.h
index f0d500ee3..05840c291 100644
--- a/sshlogin.h
+++ b/sshlogin.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshlogin.h,v 1.1 2001/03/04 01:46:30 djm Exp $ */ 1/* $OpenBSD: sshlogin.h,v 1.2 2001/06/26 06:33:04 itojun Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -20,30 +20,29 @@
20 * The host from which the user logged in is stored in buf. 20 * The host from which the user logged in is stored in buf.
21 */ 21 */
22u_long 22u_long
23get_last_login_time(uid_t uid, const char *logname, 23get_last_login_time(uid_t, const char *, char *, u_int);
24 char *buf, u_int bufsize);
25 24
26/* 25/*
27 * Records that the user has logged in. This does many things normally done 26 * Records that the user has logged in. This does many things normally done
28 * by login(1). 27 * by login(1).
29 */ 28 */
30void 29void
31record_login(pid_t pid, const char *ttyname, const char *user, uid_t uid, 30record_login(pid_t, const char *, const char *, uid_t, const char *,
32 const char *host, struct sockaddr *addr); 31 struct sockaddr *);
33 32
34#ifdef LOGIN_NEEDS_UTMPX 33#ifdef LOGIN_NEEDS_UTMPX
35/* 34/*
36 * Record just the utmp info for /bin/login. 35 * Record just the utmp info for /bin/login.
37 */ 36 */
38void 37void
39record_utmp_only(pid_t pid, const char *ttyname, const char *user, 38record_utmp_only(pid_t, const char *, const char *, const char *,
40 const char *host, struct sockaddr * addr); 39 struct sockaddr *);
41#endif 40#endif
42 41
43/* 42/*
44 * Records that the user has logged out. This does many thigs normally done 43 * Records that the user has logged out. This does many thigs normally done
45 * by login(1) or init. 44 * by login(1) or init.
46 */ 45 */
47void record_logout(pid_t pid, const char *ttyname); 46void record_logout(pid_t, const char *);
48 47
49#endif 48#endif