summaryrefslogtreecommitdiff
path: root/apps/Gateway/Gateway/Config_Files.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/Gateway/Gateway/Config_Files.h')
-rw-r--r--apps/Gateway/Gateway/Config_Files.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/Gateway/Gateway/Config_Files.h b/apps/Gateway/Gateway/Config_Files.h
index 145c3233bae..2620301e25b 100644
--- a/apps/Gateway/Gateway/Config_Files.h
+++ b/apps/Gateway/Gateway/Config_Files.h
@@ -22,11 +22,11 @@
class Connection_Config_File_Entry
// = TITLE
- // Stores the IO_Handler entry for connection configuration.
+ // Stores the Proxy_Handler entry for connection configuration.
{
public:
int conn_id_;
- // Connection id for this IO_Handler.
+ // Connection id for this Proxy_Handler.
char host_[BUFSIZ];
// Host to connect with.
@@ -46,7 +46,7 @@ public:
class Connection_Config_File_Parser : public File_Parser<Connection_Config_File_Entry>
// = TITLE
- // Parser for the IO_Handler Connection file.
+ // Parser for the Proxy_Handler Connection file.
{
public:
virtual FP::Return_Type
@@ -65,10 +65,10 @@ public:
int conn_id_;
// Connection id for this channel.
- int logical_id_;
+ int supplier_id_;
// Logical routing id for this channel.
- int payload_type_;
+ int type_;
// Type of payload in the message.
int destinations_[MAX_DESTINATIONS];