Lines Matching refs:txtime
68 } txtime; member
171 opt.txtime.ena = true; in cs_parse_args()
172 opt.txtime.delay = atoi(optarg); in cs_parse_args()
285 if (opt.txtime.ena) { in cs_write_cmsg()
286 __u64 txtime; in cs_write_cmsg() local
288 txtime = time_start_mono.tv_sec * (1000ULL * 1000 * 1000) + in cs_write_cmsg()
290 opt.txtime.delay * 1000; in cs_write_cmsg()
293 cmsg_len += CMSG_SPACE(sizeof(txtime)); in cs_write_cmsg()
299 cmsg->cmsg_len = CMSG_LEN(sizeof(txtime)); in cs_write_cmsg()
300 memcpy(CMSG_DATA(cmsg), &txtime, sizeof(txtime)); in cs_write_cmsg()
451 if (opt.txtime.ena) { in ca_set_sockopts()
571 usleep(opt.txtime.delay / 20); in main()