|
@@ -1425,6 +1425,12 @@ static struct sctp_chunk *sctp_make_data(const struct sctp_association *asoc,
|
|
|
return _sctp_make_chunk(asoc, SCTP_CID_DATA, flags, paylen, gfp);
|
|
|
}
|
|
|
|
|
|
+struct sctp_chunk *sctp_make_idata(const struct sctp_association *asoc,
|
|
|
+ __u8 flags, int paylen, gfp_t gfp)
|
|
|
+{
|
|
|
+ return _sctp_make_chunk(asoc, SCTP_CID_I_DATA, flags, paylen, gfp);
|
|
|
+}
|
|
|
+
|
|
|
static struct sctp_chunk *sctp_make_control(const struct sctp_association *asoc,
|
|
|
__u8 type, __u8 flags, int paylen,
|
|
|
gfp_t gfp)
|