Changeset 583
- Timestamp:
- 07/08/06 16:45:06 (3 years ago)
- Files:
-
- nepenthes/trunk/nepenthes-core/src/Socket.cpp (modified) (1 diff)
- nepenthes/trunk/nepenthes-core/src/TCPSocket.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
nepenthes/trunk/nepenthes-core/src/Socket.cpp
r566 r583 507 507 508 508 #define _PATH_PROCNET_ARP "/proc/net/arp" 509 char ip[10 0];510 char hwa[10 0];511 char mask[10 0];509 char ip[101]; 510 char hwa[101]; 511 char mask[101]; 512 512 char line[200]; 513 char dev[10 0];513 char dev[101]; 514 514 int type, flags; 515 515 FILE *fp; nepenthes/trunk/nepenthes-core/src/TCPSocket.cpp
r550 r583 329 329 m_LocalPort = ntohs( ( (sockaddr_in *)&addrBind)->sin_port ) ; 330 330 logDebug("Success binding Port %i\n", m_LocalPort); 331 332 SocketEvent sEvent(this,EV_SOCK_TCP_BIND); 333 g_Nepenthes->getEventMgr()->handleEvent(&sEvent); 331 334 332 335 return true;
