ticket23709 701 B

1234567891011
  1. o Major feature (channel):
  2. - Remove the incoming and outgoing channel queues. The reason to do so was
  3. due to the fact that they were always empty meaning never used but still
  4. looked at in our fast path. Bottom line, it was an unused code path.
  5. - We've simplify a lot the channel subsystem by removing those queues but
  6. also by removing a lot of unused code or dead code around it. Overall
  7. this is a cleanup removing more than 1500 lines of code overall and
  8. adding very little except for unit test.
  9. - The majority ot the channel unit tests have been rewritten and the code
  10. coverage has now been raised to 83.6% for channel.c.
  11. Closes ticket 23709.