Merge "bridging: Add creation timestamps"

This commit is contained in:
George Joseph
2019-03-08 11:11:36 -06:00
committed by Gerrit Code Review
6 changed files with 49 additions and 5 deletions

View File

@@ -331,6 +331,8 @@ struct ast_bridge_snapshot {
unsigned int num_active;
/*! The video mode of the bridge */
enum ast_bridge_video_mode_type video_mode;
/*! The time of bridge creation */
struct timeval creationtime;
};
/*!
@@ -394,6 +396,8 @@ struct ast_bridge {
struct ast_vector_int media_types;
/*! Current bridge snapshot */
struct ast_bridge_snapshot *current_snapshot;
/*! The time of bridge creation */
struct timeval creationtime;
};
/*! \brief Bridge base class virtual method table. */