diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-07-04 06:07:12 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-07-04 06:07:12 +0200 |
commit | b4c774cf8878d9100fde92ff4e938671c3b0301b (patch) | |
tree | a2dff9a498a7c4cdeddace98c2c34c7a2e3689fb /session.h | |
parent | - itojun@cvs.openbsd.org 2001/06/26 06:32:58 (diff) | |
download | openssh-b4c774cf8878d9100fde92ff4e938671c3b0301b.tar.xz openssh-b4c774cf8878d9100fde92ff4e938671c3b0301b.zip |
- 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 'session.h')
-rw-r--r-- | session.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: session.h,v 1.7 2001/06/25 08:25:39 markus Exp $ */ +/* $OpenBSD: session.h,v 1.8 2001/06/26 06:33:01 itojun Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. @@ -26,11 +26,11 @@ #ifndef SESSION_H #define SESSION_H -void do_authenticated(Authctxt *ac); +void do_authenticated(Authctxt *); -int session_open(int id); -void session_input_channel_req(int id, void *arg); -void session_close_by_pid(pid_t pid, int status); -void session_close_by_channel(int id, void *arg); +int session_open(int); +void session_input_channel_req(int, void *); +void session_close_by_pid(pid_t, int); +void session_close_by_channel(int, void *); #endif |