mirror of
https://github.com/rapid7/metasploit-payloads
synced 2025-03-12 12:14:29 +01:00

The boiler extension wasn't used and was old so it was removed. I've added a new "bare" extension which is, as it says, just bare and doesn't do anything. This can be used to create new extension projets just by copying and pasting, then editing a couple of small things. This will be added to the documentation.
13 lines
267 B
C
13 lines
267 B
C
/*!
|
|
* @file bare.h
|
|
* @brief Entry point and intialisation declrations for the bare extention.
|
|
*/
|
|
#ifndef _METERPRETER_SOURCE_EXTENSION_BARE_BARE_H
|
|
#define _METERPRETER_SOURCE_EXTENSION_BARE_BARE_H
|
|
|
|
#define TLV_TYPE_EXTENSION_BARE 0
|
|
|
|
// Custom TLVs go here
|
|
|
|
#endif
|