nexmon – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | #ifndef HAVE_HELPERS_H |
2 | #define HAVE_HELPERS_H |
||
3 | |||
4 | char generate_channel(); |
||
5 | |||
6 | char *generate_ssid(unsigned char malformed); |
||
7 | |||
8 | // Call this again to read line after line |
||
9 | // At end of file, it returns NULL |
||
10 | // Start from the beginning by setting reset true |
||
11 | char *read_next_line(char *filename, char reset); |
||
12 | |||
13 | //Sleeps till the next packet should be sent base on pps packets per second |
||
14 | void sleep_till_next_packet(unsigned int pps); |
||
15 | |||
16 | //Convert hex input to binary memory, user needs to free result |
||
17 | unsigned char *hex2bin(char *in, int *len); |
||
18 | |||
19 | #endif |