1
0

frameCreator.h 598 B

1234567891011121314151617
  1. #ifndef FRAMECREATOR_H_
  2. #define FRAMECREATOR_H_
  3. //Creates Authentication frame
  4. u_char *createAuthResponse(u_char *dstAddress, int *packetSize, u_char * radioTapHeader, u_char *myMAC);
  5. //Creates Association response
  6. u_char *createAssResponse(u_char *dstAddress, int *packetSize, u_char * radioTapHeader, u_char *myMAC);
  7. //Creates Probe response frame
  8. u_char *createProbeResponse(u_char *dstAddress, int *packetSize, u_char * radioTapHeader, u_char *myMAC);
  9. //Creates Disassociation frame
  10. u_char *createDisAss(u_char *dstAddress, int *packetSize, u_char * radioTapHeader, u_char *myMAC);
  11. #endif