Important update:

- EventBufferCore: (new)
  - Defines Events and related functions
  - Defines Event Buffer
- ItemBuffer:
  - Specify "Keep" parameter for Delete, to override CopyEntries
This commit is contained in:
Charl Wentzel
2017-08-21 20:51:10 +02:00
parent 2830b8dd6d
commit 5f5e89e7cd
6 changed files with 502 additions and 8 deletions

View File

@@ -108,7 +108,7 @@ bool CSelectableCore::LoadConfigData()
sprintf( Path, "Address/%s/Port", Name );
Port = (char*)DataTree->GetStr( NULL, Path, Port, true ); // Get AddressList Port value
}
SetSocketHandle( Handle, ctServer, Address, strlcase(Port), true ); // Assign values
SetSocketHandle( Handle, ctServer, Address, strlcase(Port), true ); // Assign values
}
else if (!strcasecmp( Type, "TCPclient" ))
{
@@ -120,7 +120,7 @@ bool CSelectableCore::LoadConfigData()
sprintf( Path, "Address/%s/Port", Name );
Port = (char*)DataTree->GetStr( NULL, Path, Port, true ); // Get AddressList Port value
}
SetSocketHandle( Handle, ctClient, Address, strlcase(Port), true ); // Assign values
SetSocketHandle( Handle, ctClient, Address, strlcase(Port), true ); // Assign values
}
else if (!strcasecmp( Type, "ForkPipe" )) {
Address = (char*)DataTree->GetStr( TempMember, "Fork/ExecPath", NULL, true ); // Get default value