Little Snitch
Little Snitch is a firewall application that monitors and controls outbound internet traffic.
Douane is a personal firewall that protects a user's privacy by allowing a user to control which applications can connect to the internet from their GNU/Linux...
douane is a personal firewall that protects a user's privacy by allowing a user to control which applications can connect to the internet from their gnu/linux computer.you can allow network traffic for some applications and deny network traffic for others.
how it works
when douane is started, it will watch the outgoing network traffic and as soon as an unknown application tries to send some network packets, douane will block it and ask you if you allow it or not.the application is composed of multiple parts written in different programming languages.
architecture
this project is divided in multiple peaces in order to get it very flexible. in the following sections, the git repository of the described part is available in the last line.
if you want to get more information about the douane architecture, you can have a look to the architecture wiki page.
linux kernel module
the linux kernel module is the heart of douane as it will catch outgoing network packets and find owning application.
written in c, it use netfilter to watch the network traffic.
the github repository url is https://github.com/douane/douanedkms .
daemon process
this is the brain of douane as it will ask you and remind your decisions to allow/deny network traffic.
written in c++, it provide a dbus server in order to communicate with the other parts.
the github repository url is https://github.com/douane/douanedaemon .
dialog processes
the dialog process is the window which is appearing when an unknown activity has been detected. it is written in gtk 3 for the official project.
the github repository url of the douane version is https://github.com/douane/douanedialog . (the dialog process could be written in any languages, for any ui, until it follows the dbus implementation).
configurator
finally the configurator allow you to edit the configuration (rules, load on boot, ...).