mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-23 18:17:59 +02:00
defined generic socket class for both TCP and UDP, inherited by MySocketTCP - send receive funcs should still be implemented
git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorSoftware@332 951219d9-93cf-4727-9268-0efd64621fa3
This commit is contained in:
@ -159,17 +159,18 @@ enum detectorType {
|
||||
AGIPD /**< agipd */
|
||||
};
|
||||
|
||||
/**
|
||||
Communication protocol (normally TCP)
|
||||
*/
|
||||
enum communicationProtocol{
|
||||
TCP, /**< TCP/IP */
|
||||
UDP /**< UDP */
|
||||
};
|
||||
/* /\** */
|
||||
/* Communication protocol (normally TCP) */
|
||||
/* *\/ */
|
||||
/* enum communicationProtocol{ */
|
||||
/* TCP, /\**< TCP/IP *\/ */
|
||||
/* UDP /\**< UDP *\/ */
|
||||
/* }; */
|
||||
|
||||
/**
|
||||
Communication protocol (normally TCP)
|
||||
network parameters
|
||||
*/
|
||||
|
||||
enum networkParameter {
|
||||
RECEIVER_IP, /**< receiver IP */
|
||||
RECEIVER_MAC, /**< receiver mac */
|
||||
|
Reference in New Issue
Block a user