fractalide / fractalide-oz

Proof of concept
GNU Affero General Public License v3.0
12 stars 3 forks source link

Bounded buffer #21

Open dmichiels opened 10 years ago

dmichiels commented 10 years ago

For the moment, new message coming in a full bounded buffer is not well managed.

For the moment : The message is keep by the receiver until a place is free in the buffer. At this moment, the ack message is send to the sender. The sender can send new message again. This protects against live lock if their is no attacker.

Issue : This can lead to easy attack to saturated the memory

What we need : The receiver must not keep information when the buffer is full.

Milestone : When it will be easy to share the entry point of the component.