1. 06 Nov, 2023 - 1 commit
    • Andrea Gianarda's avatar
      - Add 'security_level' column to conference_info table in version 27 of · ad2ef89e
      Andrea Gianarda authored
      the database ot fix compatibility issues when migrating from release/5.2
      - Allow to update participant parameters in DB
      - Improve handling of organizer addition and merge into participant if
        it is also specified in the participant list
      - Add test to perform migration from DB version 22 of release 5.2 to DB
        version 27 of master
      ad2ef89e
  2. 26 Sep, 2023 - 1 commit
    • Andrea Gianarda's avatar
      [Table Cloning] · 98e83595
      Andrea Gianarda authored
      - SQLite doesn't allow to modify contraints of tables therefore a
      workaround to do so is to recreate the table from scratch.
      The old table is therefore cloned and the values are copied tot he newly
      created table.
      The cloning is done through the CREATE statement specifying the type of
      every column in order to keep it unchanged. If we were to clone and
      populate the table in one line using query "CREATE TABLE IF NOT EXISTS
      clone AS SELECT * FROM original", we might incur in a data type change.
      For example DATE columns are converted to NUM column in the clone table.
      The cloned table is populated using the INSERT statememnt and then the
      old table can be deleted.
      A new table with the desired contraints is then created and populated
      one line at a time or in one query.
      
      [MainDb]
      - Catch soci exception in the init or updateSchema function and
      pass them on to the calling function to be handled.
      - Make MainDb::isInitialized() return FALSE if the database
        initialization failed
      - In AbstractDb::connect(), catch soci exception and reset DB session if
        they are of type invalid_staement or constraint_violation as an attempt to reconnect to the database won't fix the issue.
      - After initializing the database, clean up clone tables in a separate
        SQL statemment to avoid the following error
        'sqlite3_statement_backend::loadOne: disk I/O error while executing "<statement>"'
      
      [MainDbTester]
      - Verify that the database has been correctly initialized
      - Do not attempt to retrieve data if the database has not been correctly
        initialized
      98e83595
  3. 02 Aug, 2023 - 1 commit
  4. 24 Jul, 2023 - 1 commit
    • Andrea Gianarda's avatar
      Implement changes in the SIP signaling to enable encrypted conferences: · 647631fa
      Andrea Gianarda authored
      - a RecvOnly audio stream with content DTX and the participant label for each participant of the conference. A secured conference will have N audio streams (1 sendrecv for the local participant and N-1 recvonly for the other participants)
      - add security level to the conference parameters
      - pass security level information to the conference server
      - add encryption information to the database table storing conferences
      - pass security level down to MSAudioConference and MSVideoConference objects
      - add extra video stream for encrypted conference in active speaker layout
      647631fa
  5. 03 May, 2023 - 1 commit
  6. 29 Mar, 2023 - 1 commit
    • Andrea Gianarda's avatar
      Address refactoring: · 4f0ee26a
      Andrea Gianarda authored
      - Delete classes IdentityAddress and ConferenceAddress
      - Make Address a derived class of HybridObject
      - Use smart pointer for objects of Address type whenever they need to be handled by the applications
      4f0ee26a
  7. 22 Feb, 2023 - 1 commit
  8. 25 Oct, 2022 - 1 commit
  9. 22 Jun, 2022 - 1 commit
  10. 16 Mar, 2021 - 1 commit
  11. 25 Sep, 2020 - 1 commit
  12. 06 Jul, 2020 - 1 commit
  13. 03 Jun, 2020 - 1 commit
  14. 18 May, 2020 - 1 commit
  15. 14 Apr, 2020 - 1 commit
  16. 12 Mar, 2020 - 1 commit
    • Timothée Jaussoin's avatar
      Rename some tester files · 4d312965
      Timothée Jaussoin authored
      Add RFC4028 support
      Complete the tests
      Remove a test in call_single_tester
      Complete liblinphonecore to allow configuration handling from config files
      4d312965
  17. 18 Oct, 2019 - 1 commit
  18. 15 Oct, 2019 - 1 commit
  19. 27 Sep, 2019 - 1 commit
  20. 21 Jun, 2019 - 1 commit
  21. 11 Mar, 2019 - 1 commit
  22. 29 Oct, 2018 - 1 commit
  23. 01 Feb, 2018 - 2 commits
  24. 25 Jan, 2018 - 1 commit
  25. 15 Jan, 2018 - 1 commit
  26. 11 Jan, 2018 - 1 commit
  27. 10 Jan, 2018 - 2 commits
  28. 04 Dec, 2017 - 2 commits
  29. 22 Nov, 2017 - 1 commit
  30. 21 Nov, 2017 - 1 commit
  31. 17 Nov, 2017 - 1 commit
  32. 15 Nov, 2017 - 1 commit
  33. 09 Nov, 2017 - 2 commits
  34. 03 Nov, 2017 - 2 commits
    • Ronan's avatar
      fix(ChatMessage): remove useless test on getCore · fb18a7c7
      Ronan authored
      fb18a7c7
    • Ronan's avatar
      fix(core): misc => · a7ff1956
      Ronan authored
        - return nullptr if conference factory uri is not set
        - Address object is now more robust
        - remove custom SharedFromThis object
        - CoreAccessor throw exception if core is destroyed
        - Core must be created with a static method
        - Partial fetch of chat message
        - ...
      a7ff1956
  35. 02 Nov, 2017 - 1 commit