// SCTP Conformance Test Suite Implementation // (C) Copyright Fujitsu Ltd. 2008, 2009 // // This file is part of the SCTP Conformance Test Suite implementation. // // The SCTP Conformance Test Suite implementation is free software; // you can redistribute it and/or modify it under the terms of // the GNU General Public License version 2 as published by // the Free Software Foundation. // // The SCTP Conformance Test Suite implementation is distributed in the // hope that it will be useful, but WITHOUT ANY WARRANTY; without even // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // PURPOSE. See the GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with GNU CC; see the file COPYING. If not, write to // the Free Software Foundation, 59 Temple Place - Suite 330, // Boston, MA 02111-1307, USA. // // Please send any bug reports or fixes you make to the // email address(es): // networktest sctp // // Or submit a bug report through the following website: // http://networktest.sourceforge.net/ // // Written or modified by: // Hiroaki Kago // Wei Yongjun // // Any bugs reported given to us we will try to fix... any fixes shared will // be incorporated into the next SCTP release. // #include "../common/STD_PKT_COMMON.def" #define BAD_CHECKSUM 0xFFFFFFFF #define HBINFO "02000320c0a800640000000000000000000000000000000000000000bda47d05a806a029a16528b4" // // SCTP CHUNK_HEARTBEAT // PKG_SCTP_EXTH_SEND( sctp_chunk_heartbeat_bad_csum, { SourcePort = SCTP_TN0_PORT; DestinationPort = SCTP_NUT0_PORT; VerificationTag = VERFTAG; Checksum = BAD_CHECKSUM; }, { chunk = chunk_heartbeat; } ) CHUNK_HEARTBEAT chunk_heartbeat { Information = heartbeat_info; } // // SCTP CHUNK_HEARTBEAT_ACK // PKG_SCTP_SHORT_RECV( sctp_chunk_heartbeat_ack, { chunk = chunk_heartbeat_ack; } ) CHUNK_HEARTBEAT_ACK chunk_heartbeat_ack { Information = heartbeat_info; } HeartbeatInfo heartbeat_info { Data = hexstr(HBINFO); }