1 |
|
// |
2 |
|
// i-scream central monitoring system |
3 |
+ |
// http://www.i-scream.org |
4 |
|
// Copyright (C) 2000-2002 i-scream |
5 |
|
// |
6 |
|
// This program is free software; you can redistribute it and/or |
66 |
|
interface FilterInfo { |
67 |
|
string getHostName(); |
68 |
|
string getUDPPort(); |
68 |
– |
string getTCPPort(); |
69 |
|
}; |
70 |
|
|
71 |
|
// end filter |
72 |
|
}; |
73 |
|
|
74 |
< |
module client { |
74 |
> |
module clientinterface { |
75 |
|
interface Client { |
76 |
|
void receiveXML(in string xml); |
77 |
|
}; |
78 |
– |
// end client |
79 |
– |
}; |
80 |
– |
|
81 |
– |
module clientinterface { |
82 |
– |
interface ClientInterface { |
83 |
– |
void receiveXML(in string xml); |
84 |
– |
}; |
78 |
|
interface CorbaControlHandler { |
79 |
|
boolean startData(); |
80 |
|
boolean stopData(); |
82 |
|
void disconnect(); |
83 |
|
}; |
84 |
|
interface CorbaClientListener { |
85 |
< |
CorbaControlHandler connect(in client::Client client, in string name); |
85 |
> |
CorbaControlHandler connect(in Client client, in string name); |
86 |
|
}; |
87 |
|
// end clientinterface |
88 |
|
}; |