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,
278 assoc = cfg.pspnl.rx_assoc({"version": 0,
280 cfg.pspnl.tx_assoc({"version": 0,
296 cfg.pspnl.rx_assoc({"version": 0,
312 versions = [cfg.pspnl.consts["version"].entries[v].value for v in versions]
315 rx = cfg.pspnl.rx_assoc({"version": versions[0],
319 for version in versions[1:]:
322 "version": version,
334 assoc = cfg.pspnl.rx_assoc({"version": 0,
346 "version": 0,
355 "version": 0,
363 def _data_basic_send(cfg, version, ipver): argument
367 # Version 0 is required by spec, don't let it skip
368 if version:
369 name = cfg.pspnl.consts["version"].entries_by_val[version].name
373 cfg.pspnl.rx_assoc({"version": version,
377 raise KsftSkipEx("PSP version not supported", name)
379 s = _make_psp_conn(cfg, version, ipver)
381 rx_assoc = cfg.pspnl.rx_assoc({"version": version,
388 "version": version,
397 def __bad_xfer_do(cfg, s, tx, version='hdr0-aes-gcm-128'): argument
402 "version": version,
418 rx_assoc = cfg.pspnl.rx_assoc({"version": 0,
432 assoc = cfg.pspnl.rx_assoc({"version": 0,
435 cfg.pspnl.tx_assoc({"version": 0,
458 rx_assoc = cfg.pspnl.rx_assoc({"version": 0,
468 "version": 0,
492 rx_assoc = cfg.pspnl.rx_assoc({"version": 0,
499 "version": 0,
542 rx_assoc = cfg.pspnl.rx_assoc({"version": 0,
562 rx_assoc = cfg.pspnl.rx_assoc({"version": 0,
566 "version": 0,
575 """Build test cases for each combo of PSP version and IP version"""
585 """Build test cases for each IP version"""
616 "data_basic_send", _data_basic_send, version, ipver
618 for version in range(0, 4)