Skip to content
Snippets Groups Projects
Commit ab036751 authored by Niels Möller's avatar Niels Möller
Browse files

*** empty log message ***

Rev: src/session.c:1.7
parent ad574a05
No related branches found
No related tags found
No related merge requests found
/* session.c
*
* The ssh-connection service
*
* $Id$
*/
/* lsh, an implementation of the ssh protocol
*
* Copyright (C) 1998 Niels Möller
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "session.h"
#if 0
struct ssh_service *make_session_service(struct alist *global_requests,
struct alist *channel_requests)
{
struct connection_service *self;
NEW(self);
self->super.init = init_session_service;
self->global_requests = global_requests;
self->channel_types = channel_types;
return &self->super;
}
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment