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_vX.c
|
|
|
|
* @brief libscp version neutral code
|
|
|
|
* @author Simone Fedele
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-03-03 07:33:23 +03:00
|
|
|
#if defined(HAVE_CONFIG_H)
|
|
|
|
#include <config_ac.h>
|
|
|
|
#endif
|
|
|
|
|
2007-05-07 01:02:25 +04:00
|
|
|
#include "libscp_vX.h"
|
|
|
|
|
2020-06-10 11:20:27 +03:00
|
|
|
/******************************************************************************/
|
|
|
|
enum SCP_SERVER_STATES_E
|
2021-06-22 15:38:46 +03:00
|
|
|
scp_vXs_accept(struct trans *atrans, struct SCP_SESSION *s)
|
2007-05-07 01:02:25 +04:00
|
|
|
{
|
2020-06-10 11:20:27 +03:00
|
|
|
struct stream *in_s;
|
|
|
|
int version;
|
2012-09-20 07:51:34 +04:00
|
|
|
|
2020-06-10 11:20:27 +03:00
|
|
|
in_s = atrans->in_s;
|
|
|
|
if (!s_check_rem(in_s, 4))
|
2012-09-20 07:51:34 +04:00
|
|
|
{
|
2020-06-10 11:20:27 +03:00
|
|
|
return SCP_SERVER_STATE_INTERNAL_ERR;
|
2012-09-20 07:51:34 +04:00
|
|
|
}
|
2020-06-10 11:20:27 +03:00
|
|
|
in_uint32_be(in_s, version);
|
2012-09-20 07:51:34 +04:00
|
|
|
if (version == 0)
|
|
|
|
{
|
2020-06-10 11:20:27 +03:00
|
|
|
return scp_v0s_accept(atrans, s);
|
2012-09-20 07:51:34 +04:00
|
|
|
}
|
|
|
|
else if (version == 1)
|
|
|
|
{
|
2020-08-07 23:56:54 +03:00
|
|
|
return scp_v1s_accept(atrans, s);
|
2012-09-20 07:51:34 +04:00
|
|
|
}
|
|
|
|
return SCP_SERVER_STATE_VERSION_ERR;
|
2007-05-07 01:02:25 +04:00
|
|
|
}
|