Skip to content

Instantly share code, notes, and snippets.

@oakaigh
Last active July 8, 2018 16:08
Show Gist options
  • Save oakaigh/472b75e84dedb1f7d650c312090d798a to your computer and use it in GitHub Desktop.
Save oakaigh/472b75e84dedb1f7d650c312090d798a to your computer and use it in GitHub Desktop.

Code Snippets

July-09-2018

WinDivert

/*
 * Pre-fabricated packets.
 */
typedef struct
{
    WINDIVERT_IPHDR  ip;
    WINDIVERT_TCPHDR tcp;
} PACKET, *PPACKET;
typedef struct 
{
    PACKET header;
    UINT8 data[];
} DATAPACKET, *PDATAPACKET;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment