2012-09-20 07:51:34 +04:00
|
|
|
/**
|
|
|
|
* xrdp: A Remote Desktop Protocol server.
|
|
|
|
*
|
|
|
|
* Copyright (C) Jay Sorg 2004-2012
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2007-05-07 01:02:25 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @file libscp_v0.h
|
|
|
|
* @brief libscp version 0 declarations
|
|
|
|
* @author Simone Fedele
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LIBSCP_V0_H
|
|
|
|
#define LIBSCP_V0_H
|
|
|
|
|
|
|
|
#include "libscp.h"
|
|
|
|
|
2021-06-18 13:48:05 +03:00
|
|
|
/*TODO : Replace this (unused) function with something that can be used
|
|
|
|
* by xrdp_mm.c and sesrun.c */
|
|
|
|
#if 0
|
2007-05-07 01:02:25 +04:00
|
|
|
/* client API */
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @brief connects to sesman using scp v0
|
|
|
|
* @param c connection descriptor
|
|
|
|
* @param s session descriptor
|
|
|
|
* @param d display
|
|
|
|
*
|
|
|
|
*/
|
2012-09-20 07:51:34 +04:00
|
|
|
enum SCP_CLIENT_STATES_E
|
2021-05-08 19:58:11 +03:00
|
|
|
scp_v0c_connect(struct SCP_CONNECTION *c, struct SCP_SESSION *s);
|
2021-06-18 13:48:05 +03:00
|
|
|
#endif
|
2007-05-07 01:02:25 +04:00
|
|
|
|
|
|
|
/* server API */
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @brief processes the stream using scp version 0
|
2020-06-10 11:20:27 +03:00
|
|
|
* @param atrans connection trans
|
2007-05-07 01:02:25 +04:00
|
|
|
* @param s session descriptor
|
|
|
|
*
|
|
|
|
*/
|
2012-09-20 07:51:34 +04:00
|
|
|
enum SCP_SERVER_STATES_E
|
2021-06-22 15:38:46 +03:00
|
|
|
scp_v0s_accept(struct trans *atrans, struct SCP_SESSION *s);
|
2007-05-07 01:02:25 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @brief allows the connection to TS, returning the display port
|
2020-06-10 11:20:27 +03:00
|
|
|
* @param atrans connection trans
|
2007-05-07 01:02:25 +04:00
|
|
|
*
|
|
|
|
*/
|
2012-09-20 07:51:34 +04:00
|
|
|
enum SCP_SERVER_STATES_E
|
2021-04-22 15:27:39 +03:00
|
|
|
scp_v0s_allow_connection(struct trans *atrans, SCP_DISPLAY d,
|
|
|
|
const struct guid *guid);
|
2007-05-07 01:02:25 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @brief denies the connection to TS
|
2020-06-10 11:20:27 +03:00
|
|
|
* @param atrans connection trans
|
2007-05-07 01:02:25 +04:00
|
|
|
*
|
|
|
|
*/
|
2012-09-20 07:51:34 +04:00
|
|
|
enum SCP_SERVER_STATES_E
|
2020-06-10 11:20:27 +03:00
|
|
|
scp_v0s_deny_connection(struct trans *atrans);
|
2007-05-07 01:02:25 +04:00
|
|
|
|
2012-05-31 18:57:17 +04:00
|
|
|
/**
|
|
|
|
* @brief send reply to an authentication request
|
2020-06-10 11:20:27 +03:00
|
|
|
* @param atrans connection trans
|
2012-05-31 18:57:17 +04:00
|
|
|
* @param value the reply code 0 means ok
|
2012-09-20 07:51:34 +04:00
|
|
|
* @return
|
2012-05-31 18:57:17 +04:00
|
|
|
*/
|
|
|
|
enum SCP_SERVER_STATES_E
|
2020-06-10 11:20:27 +03:00
|
|
|
scp_v0s_replyauthentication(struct trans *atrans, unsigned short int value);
|
2012-05-31 18:57:17 +04:00
|
|
|
|
2007-05-07 01:02:25 +04:00
|
|
|
#endif
|