|
|
|
/**
|
|
|
|
* xrdp: A Remote Desktop Protocol server.
|
|
|
|
*
|
|
|
|
* Copyright (C) Jay Sorg 2004-2013
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @file scp.h
|
|
|
|
* @brief scp (sesman control protocol) common definitions
|
|
|
|
* @author Simone Fedele
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SCP_H
|
|
|
|
#define SCP_H
|
|
|
|
|
|
|
|
#include "scp_v0.h"
|
|
|
|
#include "scp_v1.h"
|
|
|
|
#include "scp_v1_mng.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @brief Starts a an scp protocol thread.
|
|
|
|
* Starts a an scp protocol thread.
|
|
|
|
* But does only version control....
|
|
|
|
* @param socket the connection socket
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void* DEFAULT_CC
|
|
|
|
scp_process_start(void* sck);
|
|
|
|
|
|
|
|
#endif
|