|
@@ -1075,20 +1075,28 @@ nodata:
|
|
|
|
|
|
/* Make a HEARTBEAT chunk. */
|
|
|
struct sctp_chunk *sctp_make_heartbeat(const struct sctp_association *asoc,
|
|
|
- const struct sctp_transport *transport,
|
|
|
- const void *payload, const size_t paylen)
|
|
|
+ const struct sctp_transport *transport)
|
|
|
{
|
|
|
- struct sctp_chunk *retval = sctp_make_chunk(asoc, SCTP_CID_HEARTBEAT,
|
|
|
- 0, paylen);
|
|
|
+ struct sctp_chunk *retval;
|
|
|
+ sctp_sender_hb_info_t hbinfo;
|
|
|
+
|
|
|
+ retval = sctp_make_chunk(asoc, SCTP_CID_HEARTBEAT, 0, sizeof(hbinfo));
|
|
|
|
|
|
if (!retval)
|
|
|
goto nodata;
|
|
|
|
|
|
+ hbinfo.param_hdr.type = SCTP_PARAM_HEARTBEAT_INFO;
|
|
|
+ hbinfo.param_hdr.length = htons(sizeof(sctp_sender_hb_info_t));
|
|
|
+ hbinfo.daddr = transport->ipaddr;
|
|
|
+ hbinfo.sent_at = jiffies;
|
|
|
+ hbinfo.hb_nonce = transport->hb_nonce;
|
|
|
+
|
|
|
/* Cast away the 'const', as this is just telling the chunk
|
|
|
* what transport it belongs to.
|
|
|
*/
|
|
|
retval->transport = (struct sctp_transport *) transport;
|
|
|
- retval->subh.hbs_hdr = sctp_addto_chunk(retval, paylen, payload);
|
|
|
+ retval->subh.hbs_hdr = sctp_addto_chunk(retval, sizeof(hbinfo),
|
|
|
+ &hbinfo);
|
|
|
|
|
|
nodata:
|
|
|
return retval;
|