Lines Matching full:version
47 def _make_psp_conn(cfg, version=0, ipver=None): argument
48 _send_with_ack(cfg, b'conn psp\0' + struct.pack('BB', version, version))
195 assoc_a = cfg.pspnl.rx_assoc({"version": 0,
203 assoc_b = cfg.pspnl.rx_assoc({"version": 0,
216 assoc = cfg.pspnl.rx_assoc({"version": 0,
224 "version": 0,
237 cfg.pspnl.rx_assoc({"version": 0,
248 assoc = cfg.pspnl.rx_assoc({"version": 0,
251 cfg.pspnl.tx_assoc({"version": 0,
263 cfg.pspnl.rx_assoc({"version": 0,
277 assoc = cfg.pspnl.rx_assoc({"version": 0,
279 cfg.pspnl.tx_assoc({"version": 0,
294 cfg.pspnl.rx_assoc({"version": 0,
310 versions = [cfg.pspnl.consts["version"].entries[v].value for v in versions]
313 rx = cfg.pspnl.rx_assoc({"version": versions[0],
317 for version in versions[1:]:
320 "version": version,
332 assoc = cfg.pspnl.rx_assoc({"version": 0,
344 "version": 0,
353 "version": 0,
361 def _data_basic_send(cfg, version, ipver): argument
365 # Version 0 is required by spec, don't let it skip
366 if version:
367 name = cfg.pspnl.consts["version"].entries_by_val[version].name
371 cfg.pspnl.rx_assoc({"version": version,
375 raise KsftSkipEx("PSP version not supported", name)
377 s = _make_psp_conn(cfg, version, ipver)
379 rx_assoc = cfg.pspnl.rx_assoc({"version": version,
386 "version": version,
395 def __bad_xfer_do(cfg, s, tx, version='hdr0-aes-gcm-128'): argument
400 "version": version,
416 rx_assoc = cfg.pspnl.rx_assoc({"version": 0,
430 assoc = cfg.pspnl.rx_assoc({"version": 0,
433 cfg.pspnl.tx_assoc({"version": 0,
456 rx_assoc = cfg.pspnl.rx_assoc({"version": 0,
466 "version": 0,
490 rx_assoc = cfg.pspnl.rx_assoc({"version": 0,
497 "version": 0,
540 rx_assoc = cfg.pspnl.rx_assoc({"version": 0,
560 rx_assoc = cfg.pspnl.rx_assoc({"version": 0,
564 "version": 0,
573 """Build test cases for each combo of PSP version and IP version"""
583 """Build test cases for each IP version"""
614 "data_basic_send", _data_basic_send, version, ipver
616 for version in range(0, 4)