summaryrefslogtreecommitdiff
path: root/src/ipcpd/unicast/pff.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipcpd/unicast/pff.c')
-rw-r--r--src/ipcpd/unicast/pff.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ipcpd/unicast/pff.c b/src/ipcpd/unicast/pff.c
index 4e380e05..19432972 100644
--- a/src/ipcpd/unicast/pff.c
+++ b/src/ipcpd/unicast/pff.c
@@ -28,6 +28,7 @@
#include "pff.h"
#include "pol-pff-ops.h"
#include "pol/alternate_pff.h"
+#include "pol/multipath_pff.h"
#include "pol/simple_pff.h"
struct pff {
@@ -52,6 +53,10 @@ struct pff * pff_create(enum pol_pff pol)
log_dbg("Using simple PFF policy.");
pff->ops = &simple_pff_ops;
break;
+ case PFF_MULTIPATH:
+ log_dbg("Using multipath PFF policy.");
+ pff->ops = &multipath_pff_ops;
+ break;
default:
goto err;
}