- fix missing break

- update README
This commit is contained in:
Babak Farrokhi 2015-10-25 16:12:59 +03:30
parent 006ddff6af
commit ba17cca28b
2 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,7 @@ fsipd is a minimal SIP honeypot. It listens on TCP/UDP 5060 and logs all incomin
Incoming packets are logged in CSV format in "fsipd.log". Log format is described below:
`epoch, protocol, src ip, src port, "message"`
`epoch timestamp, protocol, src ip, src port, "message"`
example:

View File

@ -128,6 +128,7 @@ process_request(const struct sockaddr_in *sa, int type, char *str)
break;
case SOCK_RAW:
ptype = s_types[2];
break;
default:
ptype = s_types[3];;
}