mirror of
https://github.com/jgamblin/Mirai-Source-Code
synced 2025-06-28 16:13:11 +00:00
12 lines
172 B
C
Executable File
12 lines
172 B
C
Executable File
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char **args)
|
|
{
|
|
printf("REPORT %s:%s\n", "127.0.0.1", "80");
|
|
|
|
while (1)
|
|
sleep(1);
|
|
|
|
return 0;
|
|
} |