2017-09-21 10:01:20 +03:00
|
|
|
/**
|
|
|
|
* xrdp: A Remote Desktop Protocol server.
|
|
|
|
*
|
|
|
|
* Copyright (C) Emmanuel Blindauer 2017
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2017-09-26 22:06:44 +03:00
|
|
|
* @file sessionrecord.h
|
2017-09-21 10:01:20 +03:00
|
|
|
* @brief utmp/wtmp handling code
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-09-26 22:06:44 +03:00
|
|
|
#ifndef SESSIONRECORD_H
|
|
|
|
#define SESSIONRECORD_H
|
|
|
|
|
|
|
|
#ifdef HAVE_UTMPX_H
|
|
|
|
#include <utmpx.h>
|
|
|
|
typedef struct utmpx _utmp;
|
|
|
|
#else
|
|
|
|
#include <utmpx.h>
|
|
|
|
typedef struct utmp _utmp;
|
|
|
|
#endif
|
|
|
|
|
2017-09-21 10:01:20 +03:00
|
|
|
#define XRDP_LINE_FORMAT "xrdp:%d"
|
2017-10-06 04:55:37 +03:00
|
|
|
|
2017-09-21 10:01:20 +03:00
|
|
|
/**
|
|
|
|
*
|
2017-09-22 08:43:10 +03:00
|
|
|
* @brief
|
|
|
|
*
|
2017-09-21 10:01:20 +03:00
|
|
|
* @param pid
|
2017-09-22 08:43:10 +03:00
|
|
|
* @return 0
|
2017-09-21 10:01:20 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
int add_xtmp_entry(int pid, const char *line, const char *user, const char *rhostname, short state);
|
|
|
|
|
|
|
|
int utmp_login(int pid, int display, const char *user, const char *rhostname);
|
|
|
|
|
|
|
|
int utmp_logout(int pid, int display, const char *user, const char *rhostname);
|
|
|
|
|
|
|
|
#endif
|