mirror of https://github.com/neutrinolabs/xrdp
40 lines
1002 B
C
40 lines
1002 B
C
/**
|
|
* xrdp: A Remote Desktop Protocol server.
|
|
*
|
|
* Copyright (C) Jay Sorg 2004-2023
|
|
*
|
|
* 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 eicp_server.h
|
|
* @brief eicp (executive initialisation control protocol) server function
|
|
* @author Matt Burt
|
|
*
|
|
*/
|
|
|
|
#ifndef EICP_SERVER_H
|
|
#define EICP_SERVER_H
|
|
|
|
/**
|
|
*
|
|
* @brief Processes an EICP message
|
|
* @param self The EICP transport the message is coming in on
|
|
*
|
|
*/
|
|
int
|
|
eicp_server(struct trans *self);
|
|
|
|
#endif // EICP_SERVER_H
|