Home | History | Annotate | Download | only in test

Lines Matching refs:mesg

425   printf("# mesg length (octets)\tthroughput (megabits per second)\r\n");
447 printf("# mesg length (octets)\trejections per second\r\n");
463 srtp_hdr_t *mesg;
492 mesg = srtp_create_test_packet(msg_len_octets, ssrc);
493 if (mesg == NULL)
502 status = srtp_protect(srtp, mesg, &len);
509 mesg->seq = htons(ntohs(mesg->seq) + 1);
514 free(mesg);
523 srtp_hdr_t *mesg;
540 mesg = srtp_create_test_packet(msg_len_octets, ssrc);
541 if (mesg == NULL)
545 srtp_protect(srtp, (srtp_hdr_t *)mesg, &len);
550 srtp_unprotect(srtp, (srtp_hdr_t *)mesg, &len);
554 free(mesg);