2.1 KiB
2.1 KiB
Table of contents
Greetings people. In this part of the documentation, you will learn how Jami works from the high level, to the bottom, with some examples. The following part will follow this plan:
-
[The different APIs](1. The different APIs)
-
Basic features
- [Manage accounts](2.1. Manage Accounts)
- [Manage contacts](2.2. Manage contacts)
- [Swarm](2.3. Swarm)
- [Let's do a call!](2.4. Let's do a call)
- [File transfer](2.5. File transfer)
-
Advanced features
- Manage audio/videos
- Call recording
- The push notifications system
- What is a DHTProxy
- Supporting SIP
- Setup your own TURN server
- [Plugins](7. Jami plugins)
-
Contribute
- Build instructions
- [Submit your first patch](4.2. Submit your first patch)
- [Features Requests](4.3. Features requests)
-
Group chats in details
- Description
- [The connection manager](5.2. The connection manager)
- DRT
- Voting system
- Group calls
-
Drafts
- [Conference Protocol](6.1. Conference Protocol)
- [Sync Protocol](6.2. Sync Protocol)
Description
If you read this, you probably want to either contribute to one of the projects or to implement your own client. There is three main layers in this project:
- OpenDHT used to do the whole p2p communication. You can interact with this library like any Cpp library or with the python wrapper or via the REST API.
- The daemon, which is the main part. It's the part which does all the logic for Ring and interact with OpenDHT, pjsip, ffmpeg and all libraries used and implement the whole protocol. If you want to do a client, we recommend to use implement your client on top of this daemon and use one of the many APIs (REST/dbus/libwrap/JNI).
- The client part, which is basically the frontend.
The following documentation will explain the different uses features for all layers.