• Andrea Gianarda's avatar
    First phase of the integration of the tchat into the conference. · 237d9ed6
    Andrea Gianarda authored
    Liblinphone now supports only two types of tchat:
    - conference based tchat (objects ClientChatRoom and ServerChatRoom)
    - minimal one-to-one tchat (object BasicChatRoom).
    
    The following tchat objects have been deleted:
      - ProxyChatRoom
      - BasicToClientGroupChatRoom
      - ClientGroupToBasicChatRoom
    
    1. Conference based tchat
    
    This type of tchat is always linked ot a conference object:
    - ClientChatRoom belongs to a ClientConference
    - ServerChatRoom belongs to a ServerConference
    
    Only chat specific functionality such as sending a message and ephemeral
    capabilities are now handled in the tchat object whereas participant and
    subject handling is taken care by the conference object.
    
    These type of tchat object is no longer stored in the map of tchat held
    by the core but only in the conference map through the pointer of the
    conference they belong to
    
    Conference parameters have been reworked. Now, common parameters to audio
    video conferences and tchat...
    237d9ed6
core_private.h 1.20 KiB
/*
 * Copyright (c) 2010-2022 Belledonne Communications SARL.
 * This file is part of Liblinphone
 * (see https://gitlab.linphone.org/BC/public/liblinphone).
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef _CORE_PRIVATE_H_
#define _CORE_PRIVATE_H_
#include "c-wrapper/internal/c-tools.h"
#include "core/core.h"
#include "linphone/types.h"
#include "private_functions.h"
#include "private_structs.h"
L_INTERNAL_DECLARE_C_OBJECT(
    Core, LINPHONE_CORE_STRUCT_FIELDS; struct Cache {
	    ~Cache() {
	    std::string lime_server_url;
    } mutable cache;);
#endif /* _CORE_PRIVATE_H_ */