Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  session_list.h

  Sprache: 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 session_list.h
 * @brief Session list management definitions
 * @author Jay Sorg, Simone Fedele
 *
 */



#ifndef SESSION_LIST_H
#define SESSION_LIST_H

#include <sys/types.h>

#include "guid.h"
#include "scp_application_types.h"
#include "xrdp_constants.h"

enum session_state
{
    /**
     * Session definition is little more than a sesexec process. We're
     * waiting for more details of the session from sesexec */

    E_SESSION_STARTING,
    /** Session is fully active */
    E_SESSION_RUNNING
};

/**
 * Object describing a session
 *
 * Unless otherwide noted, fields are only valid if
 * the status is E_SESSION_RUNNING
 */

struct session_item
{
    enum session_state state;
    struct trans *sesexec_trans; // trans for sesexec process. Always valid.
    pid_t sesexec_pid; // pid for sesexec process. Always valid
    /**
     * May be valid if known when the session is starting, otherwise -1 */

    int display;
    uid_t uid;
    enum scp_session_type type;
    unsigned short start_width;
    unsigned short start_height;
    unsigned char bpp;
    struct guid guid;
    char start_ip_addr[MAX_PEER_ADDRSTRLEN];
    time_t start_time;
};

/**
 * Initialise the module
 * @return 0 for success
 *
 * Errors are logged
 */

int
session_list_init(void);

/**
 * Clean up the module on program exit
 */

void
session_list_cleanup(void);

/**
 * Returns the number of sessions currently active
 * @return Session count
 */

unsigned int
session_list_get_count(void);

/**
 * Allocates a new session on the list
 *
 * state will be E_SESSION_STARTING. Other data must be filled in by
 * the caller as appropriate.
 *
 * @return pointer to new session object or NULL for no memory
 *
 * After allocating the session, you must initialise the sesexec_trans field
 * with a valid transport.
 *
 * The session is removed by session_check_wait_objs() when the transport
 * goes down (or wasn't allocated in the first place).
 */

struct session_item *
session_list_new(void);

/**
 * Get the next available display
 *
 * The display isn't reserved until the caller has allocated a new session
 * (with session_list_new()) and put the new display in it.
 */

int
session_list_get_available_display(void);

/**
 *
 * @brief finds a session matching the supplied parameters
 * @return session data or 0
 *
 */

struct session_item *
session_list_get_bydata(uid_t uid,
                        enum scp_session_type type,
                        unsigned short width,
                        unsigned short height,
                        unsigned char  bpp,
                        const char *ip_addr);

/**
 * @brief retrieves session descriptions
 * @param uid the UID for the descriptions
 * @param[out] cnt The number of sessions returned
 * @param flags Future expansion
 * @return A block of session descriptions
 *
 * Pass the return result to free_session_info_list() after use
 *
 */

struct scp_session_info *
session_list_get_byuid(uid_t uid, unsigned int *cnt, unsigned int flags);

/**
 *
 * @brief Frees the result of session_get_byuser()
 * @param sesslist Resuit of session_get_byuser()
 * @param cnt  Number of entries in sess
 */

void
free_session_info_list(struct scp_session_info *sesslist, unsigned int cnt);

/**
 * @brief Get the wait objs for the session list module
 * @param @robjs Objects array to update
 * @param robjs_count Elements in robjs (by reference)
 * @return 0 for success
 */

int
session_list_get_wait_objs(tbus robjs[], int *robjs_count);


/**
 * @brief Check the wait objs for the session list module
 * @return 0 for success
 */

int
session_list_check_wait_objs(void);

#endif // SESSION_LIST_H

Messung V0.5 in Prozent
C=90 H=93 G=91

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet am  2026-07-10) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik