2014-06-25 23:21:02 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* FreeRDP Sample Server (Lync Multiparty)
|
|
|
|
*
|
|
|
|
* Copyright 2014 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2015-07-15 10:50:35 +03:00
|
|
|
* Copyright 2015 Thincast Technologies GmbH
|
|
|
|
* Copyright 2015 DI (FH) Martin Haimberger <martin.haimberger@thincast.com>
|
2014-06-25 23:21:02 +04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2022-02-16 13:20:38 +03:00
|
|
|
#include <freerdp/config.h>
|
2014-06-25 23:21:02 +04:00
|
|
|
|
2021-09-03 09:26:07 +03:00
|
|
|
#include <winpr/assert.h>
|
|
|
|
|
2014-06-25 23:21:02 +04:00
|
|
|
#include "sf_encomsp.h"
|
|
|
|
|
|
|
|
BOOL sf_peer_encomsp_init(testPeerContext* context)
|
|
|
|
{
|
2021-09-03 09:26:07 +03:00
|
|
|
WINPR_ASSERT(context);
|
2014-06-25 23:21:02 +04:00
|
|
|
|
2021-09-03 09:26:07 +03:00
|
|
|
context->encomsp = encomsp_server_context_new(context->vcm);
|
2014-06-25 23:21:02 +04:00
|
|
|
if (!context->encomsp)
|
|
|
|
return FALSE;
|
|
|
|
|
2021-09-03 09:26:07 +03:00
|
|
|
context->encomsp->rdpcontext = &context->_p;
|
|
|
|
|
|
|
|
WINPR_ASSERT(context->encomsp->Start);
|
2016-02-03 14:46:02 +03:00
|
|
|
if (context->encomsp->Start(context->encomsp) != CHANNEL_RC_OK)
|
2014-06-25 23:21:02 +04:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|