megaco_edist_compress

Megaco erlang dist compress behaviour.

The following functions should be exported from a megaco_edist_compress callback module:

Functions


Module:encode(R, Version) -> T

  • R = megaco_message() | transaction() | action_reply() | action_request() | command_request()
  • Version = integer()
  • T = term()

Compress a megaco component. The erlang dist encoder makes no assumption on the how or even if the component is compressed.

Module:decode(T, Version) -> R

  • T = term()
  • Version = integer()
  • R = megaco_message() | transaction() | action_reply() | action_request() | command_request()

Decompress a megaco component.

View Functions