aboutsummaryrefslogtreecommitdiff
path: root/programs
diff options
context:
space:
mode:
Diffstat (limited to 'programs')
-rw-r--r--programs/programs_helper.c3
-rw-r--r--programs/rtcweb.c3
2 files changed, 6 insertions, 0 deletions
diff --git a/programs/programs_helper.c b/programs/programs_helper.c
index a8dbd62f..72f239b1 100644
--- a/programs/programs_helper.c
+++ b/programs/programs_helper.c
@@ -122,6 +122,9 @@ handle_association_change_event(struct sctp_assoc_change *sac)
case SCTP_ASSOC_SUPPORTS_RE_CONFIG:
fprintf(stderr, " RE-CONFIG");
break;
+ case SCTP_ASSOC_SUPPORTS_INTERLEAVING:
+ fprintf(stderr, " INTERLEAVING");
+ break;
default:
fprintf(stderr, " UNKNOWN(0x%02x)", sac->sac_info[i]);
break;
diff --git a/programs/rtcweb.c b/programs/rtcweb.c
index d064b852..915b9ee8 100644
--- a/programs/rtcweb.c
+++ b/programs/rtcweb.c
@@ -887,6 +887,9 @@ handle_association_change_event(struct sctp_assoc_change *sac)
case SCTP_ASSOC_SUPPORTS_RE_CONFIG:
printf(" RE-CONFIG");
break;
+ case SCTP_ASSOC_SUPPORTS_INTERLEAVING:
+ printf(" INTERLEAVING");
+ break;
default:
printf(" UNKNOWN(0x%02x)", sac->sac_info[i]);
break;