Asterisk - The Open Source Telephony Project GIT-master-7e7a603
Data Fields
ast_datastore_info Struct Reference

Structure for a data store type. More...

#include <datastore.h>

Data Fields

void(* chan_breakdown )(void *data, struct ast_channel *old_chan, struct ast_channel *new_chan)
 Fix up channel references on the channel being masqueraded into. More...
 
void(* chan_fixup )(void *data, struct ast_channel *old_chan, struct ast_channel *new_chan)
 Fix up channel references on the masquerading channel. More...
 
void(* destroy )(void *data)
 
void *(* duplicate )(void *data)
 
const char * type
 

Detailed Description

Structure for a data store type.

Definition at line 31 of file datastore.h.

Field Documentation

◆ chan_breakdown

void(* chan_breakdown) (void *data, struct ast_channel *old_chan, struct ast_channel *new_chan)

Fix up channel references on the channel being masqueraded into.

  • data The datastore data
  • old_chan The old channel owning the datastore
  • new_chan The new channel owning the datastore

This is the same as the above callback, except it is called for the channel being masqueraded into instead of the channel that is masquerading.

Definition at line 60 of file datastore.h.

Referenced by channel_do_masquerade().

◆ chan_fixup

void(* chan_fixup) (void *data, struct ast_channel *old_chan, struct ast_channel *new_chan)

Fix up channel references on the masquerading channel.

  • data The datastore data
  • old_chan The old channel owning the datastore
  • new_chan The new channel owning the datastore

This is exactly like the fixup callback of the channel technology interface. It allows a datastore to fix any pointers it saved to the owning channel in case that the owning channel has changed. Generally, this would happen when the datastore is set to be inherited, and a masquerade occurs.

Definition at line 48 of file datastore.h.

Referenced by channel_do_masquerade().

◆ destroy

void(* destroy) (void *data)

◆ duplicate

void *(* duplicate) (void *data)

Duplicate item data (used for inheritance)

Definition at line 33 of file datastore.h.

Referenced by ast_channel_datastore_inherit().

◆ type

const char* type

The documentation for this struct was generated from the following file: