summaryrefslogtreecommitdiff
path: root/sshlogin.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-02-18 19:13:33 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-02-18 19:13:33 +0000
commitd95c09cc83ec07b42feb07c4ff71d23720b37e8e (patch)
tree73b15e75f83356fa59b0d17ffd88409d8f4fc5de /sshlogin.h
parentc32a5b1a1568258481df6316dc008fc7cd3825fd (diff)
downloadopenssh-git-d95c09cc83ec07b42feb07c4ff71d23720b37e8e.tar.gz
- (bal) Markus' blessing to rename login.[ch] -> sshlogin.[ch] and
pty.[ch] -> sshpty.[ch]
Diffstat (limited to 'sshlogin.h')
-rw-r--r--sshlogin.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/sshlogin.h b/sshlogin.h
new file mode 100644
index 00000000..4630eedf
--- /dev/null
+++ b/sshlogin.h
@@ -0,0 +1,40 @@
+/* $OpenBSD: login.h,v 1.2 2001/01/29 01:58:16 niklas Exp $ */
+
+/*
+ * 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".
+ */
+#ifndef LOGIN_H
+#define LOGIN_H
+
+/*
+ * Returns the time when the user last logged in. Returns 0 if the
+ * information is not available. This must be called before record_login.
+ * The host from which the user logged in is stored in buf.
+ */
+u_long
+get_last_login_time(uid_t uid, const char *logname,
+ char *buf, u_int bufsize);
+
+/*
+ * Records that the user has logged in. This does many things normally done
+ * by login(1).
+ */
+void
+record_login(pid_t pid, const char *ttyname, const char *user, uid_t uid,
+ const char *host, struct sockaddr *addr);
+
+/*
+ * Records that the user has logged out. This does many thigs normally done
+ * by login(1) or init.
+ */
+void record_logout(pid_t pid, const char *ttyname);
+
+#endif