8 |
|
|
9 |
|
/** |
10 |
|
* Configurator object for the JavaHost |
11 |
< |
* Will connect to the configurator manager and collect its specific |
11 |
> |
* Will connect to the filter manager and collect its specific |
12 |
|
* configuration |
13 |
|
* |
14 |
|
* @author $Author$ |
62 |
|
//---PUBLIC METHODS--- |
63 |
|
|
64 |
|
public InetAddress getFilterName(){ |
65 |
< |
// will return the most recient IP address (if it is dynamic for whatever reason |
65 |
> |
// will return the most recent IP address (if it is dynamic for whatever reason) |
66 |
|
try { |
67 |
|
return InetAddress.getByName(filterName); |
68 |
|
} |
76 |
|
/** |
77 |
|
* Used to retrieve the port to send UDP packets to on the filter |
78 |
|
* |
79 |
< |
* @return an integer corrisponding to the UDP port of the filter |
79 |
> |
* @return an integer corresponding to the UDP port of the filter |
80 |
|
*/ |
81 |
|
public int getFilterUDPPort(){ |
82 |
|
|
86 |
|
/** |
87 |
|
* Used to retrieve the port to send TCP heartbeats to on the filter |
88 |
|
* |
89 |
< |
* @return an integer corrisponding to the TCP of the filter |
89 |
> |
* @return an integer corresponding to the TCP of the filter |
90 |
|
*/ |
91 |
|
public int getFilterTCPPort(){ |
92 |
|
|
118 |
|
Socket mySocket; |
119 |
|
configChanged = false; |
120 |
|
|
121 |
< |
System.out.println("Establishing connection with config manager"); |
121 |
> |
System.out.println("Establishing connection with filter manager"); |
122 |
|
|
123 |
|
// might throw a UnknownHostException |
124 |
|
try { |
156 |
|
|
157 |
|
// close the socket |
158 |
|
mySocket.close(); |
159 |
< |
System.out.println("Completed communication with config manager"); |
159 |
> |
System.out.println("Completed communication with filter manager"); |
160 |
|
|
161 |
|
} |
162 |
|
catch ( UnknownHostException e ){ |
259 |
|
|
260 |
|
//---STATIC ATTRIBUTES--- |
261 |
|
|
262 |
< |
} // class |
262 |
> |
} // class |