Skip to content

Commit

Permalink
topos_redis: update the signature for branch record loading function
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Aug 8, 2017
1 parent 4c5419d commit b84e680
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/modules/topos_redis/topos_redis_storage.c
Expand Up @@ -440,7 +440,8 @@ int tps_redis_clean_branches(void)
/**
*
*/
int tps_redis_load_branch(sip_msg_t *msg, tps_data_t *md, tps_data_t *sd)
int tps_redis_load_branch(sip_msg_t *msg, tps_data_t *md, tps_data_t *sd,
uint32_t mode)
{
char* argv[TPS_REDIS_NR_KEYS];
size_t argvlen[TPS_REDIS_NR_KEYS];
Expand Down
3 changes: 2 additions & 1 deletion src/modules/topos_redis/topos_redis_storage.h
Expand Up @@ -36,7 +36,8 @@ int tps_redis_insert_dialog(tps_data_t *td);
int tps_redis_clean_dialogs(void);
int tps_redis_insert_branch(tps_data_t *td);
int tps_redis_clean_branches(void);
int tps_redis_load_branch(sip_msg_t *msg, tps_data_t *md, tps_data_t *sd);
int tps_redis_load_branch(sip_msg_t *msg, tps_data_t *md, tps_data_t *sd,
uint32_t mode);
int tps_redis_load_dialog(sip_msg_t *msg, tps_data_t *md, tps_data_t *sd);
int tps_redis_update_branch(sip_msg_t *msg, tps_data_t *md, tps_data_t *sd,
uint32_t mode);
Expand Down

0 comments on commit b84e680

Please sign in to comment.