diff options
author | dimitri staessens <dimitri.staessens@ugent.be> | 2017-05-12 13:05:47 +0200 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@ugent.be> | 2017-05-15 12:06:09 +0200 |
commit | 9903b8a2f9a7dc8ebac6928dcf2d2b5593ea0615 (patch) | |
tree | ea16469c2d8fbcb417ed89e0bbd550834d0602a6 /src/irmd/main.c | |
parent | b36acfd93b1dc16a153ca9b9077d113732accb4e (diff) | |
download | ouroboros-9903b8a2f9a7dc8ebac6928dcf2d2b5593ea0615.tar.gz ouroboros-9903b8a2f9a7dc8ebac6928dcf2d2b5593ea0615.zip |
ipcpd: Allow specifying fixed syntax
This commits adds the functions and messages to specify a fixed
protocol syntax during CACEP. It also revises the messages for
specifying the DT protocol syntax from the irm tool.
Diffstat (limited to 'src/irmd/main.c')
-rw-r--r-- | src/irmd/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/irmd/main.c b/src/irmd/main.c index 3331c754..b3243192 100644 --- a/src/irmd/main.c +++ b/src/irmd/main.c @@ -423,19 +423,19 @@ static int bootstrap_ipcp(pid_t api, return -1; } - entry->dif_name = strdup(conf->dif_name); + entry->dif_name = strdup(conf->dif_info->dif_name); if (entry->dif_name == NULL) { pthread_rwlock_unlock(&irmd.reg_lock); log_warn("Failed to set name of DIF."); return -ENOMEM; } - entry->dir_hash_algo = conf->dir_hash_algo; + entry->dir_hash_algo = conf->dif_info->dir_hash_algo; pthread_rwlock_unlock(&irmd.reg_lock); log_info("Bootstrapped IPCP %d in DIF %s.", - entry->api, conf->dif_name); + entry->api, conf->dif_info->dif_name); return 0; } @@ -484,7 +484,7 @@ static int enroll_ipcp(pid_t api, return -ENOMEM; } - entry->dir_hash_algo = info.algo; + entry->dir_hash_algo = info.dir_hash_algo; pthread_rwlock_unlock(&irmd.reg_lock); |