Forum: C
Apr 15th, 2008, 2:41 PM
|
|
Replies: 5
Views: 331
Re: port scan detection
I'm supposing you dont want to do a port scanner but you want to detect if you're being target of a port scanner right?
In that case, the next thing i would do is to check if you receive connection...
|
Forum: C
Apr 15th, 2008, 2:18 PM
|
|
Replies: 13
Views: 728
Re: char[] vs char*
Well... you are saying that it's not possible to change a string literal declared has a pointer but i've compiled this code and it worked:
#include <stdio.h>
int main() {
char *a =...
|