*/ static void dumpBlock (DumpState *D, const void *b, size_t size) { if (D->status == 0) { /* do not write anything after an error */ lua_unlock(D->L); D->status = (*D->writer)(D->L, b, size, D->data); lua_lock(D->L); D->offset += size; } } /* ** ...
IBM-asemien kohdalla nopeampi keino on käyttää ITDT (IBM Tape Diagnostic Tool) -työkalua. Affected Products PowerVault TL2000, PowerVault TL4000 Provide Feedback Accurate Useful Easy to Understand Was this article helpful...
luaforensicstcpdumppacket-capture UpdatedMay 26, 2024 Go syncsynchalt/dime-a-tap Star23 Man-in-the-middle TLS intercept proxy with tcpdumpable loopback tlssslproxymitmtcpdumphackertoolsim-in UpdatedApr 11, 2022 Go fox-it/pcap-broker
{ lua_State *L; lua_Writer writer; void *data; int strip; int status; } DumpState; /* ** All high-level dumps go through dumpVector; you can change it to ** change the endianness of the result */ #define dumpVector(D,v,n) dumpBlock(D,v,(n)*sizeof((v)[0])) #define ...