|
|
|
|
@ -743,30 +743,41 @@ public InetSocketAddress getICELocalRelayedAddress(String streamName)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns the harvesting time (in ms) for the harvester given in parameter.
|
|
|
|
|
* Returns the ICE remote relayed address (server or peer relayed).
|
|
|
|
|
*
|
|
|
|
|
* @param harvesterName The class name if the harvester.
|
|
|
|
|
* @param streamName The stream name (AUDIO, VIDEO);
|
|
|
|
|
*
|
|
|
|
|
* @return The harvesting time (in ms) for the harvester given in parameter.
|
|
|
|
|
* -1 if this harvester does not exists, if the ICE agent is null, or if the
|
|
|
|
|
* agent is not currently harvesting with this harvester.
|
|
|
|
|
* @return the ICE remote relayed address. May be null if this transport
|
|
|
|
|
* manager is not using ICE or if there is no relayed address for the
|
|
|
|
|
* remote candidate used.
|
|
|
|
|
*/
|
|
|
|
|
public long getHarvestingTime(String harvesterName)
|
|
|
|
|
public InetSocketAddress getICERemoteRelayedAddress(String streamName)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns the total harvesting time (in ms) for all harvesters.
|
|
|
|
|
*
|
|
|
|
|
* @return The total harvesting time (in ms) for all the harvesters. -1 if
|
|
|
|
|
* the ICE agent is null, or if the agent has nevers harvested.
|
|
|
|
|
*/
|
|
|
|
|
public long getTotalHarvestingTime()
|
|
|
|
|
{
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns the ICE remote relayed address (server or peer relayed).
|
|
|
|
|
* Returns the harvesting time (in ms) for the harvester given in parameter.
|
|
|
|
|
*
|
|
|
|
|
* @param streamName The stream name (AUDIO, VIDEO);
|
|
|
|
|
* @param harvesterName The class name if the harvester.
|
|
|
|
|
*
|
|
|
|
|
* @return the ICE remote relayed address. May be null if this transport
|
|
|
|
|
* manager is not using ICE or if there is no relayed address for the
|
|
|
|
|
* remote candidate used.
|
|
|
|
|
* @return The harvesting time (in ms) for the harvester given in parameter.
|
|
|
|
|
* -1 if this harvester does not exists, if the ICE agent is null, or if the
|
|
|
|
|
* agent has never harvested with this harvester.
|
|
|
|
|
*/
|
|
|
|
|
public InetSocketAddress getICERemoteRelayedAddress(String streamName)
|
|
|
|
|
public long getHarvestingTime(String harvesterName)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|