Каким образом возможно узнать доступно ли p2p соединение?
Достаточно ли этого?

Код AS3:
netConnection = new NetConnection();
netConnection.addEventListener(NetStatusEvent.NET_STATUS, netConnectionHandler);
netConnection.connect(CirrusAddress, DeveloperKey);
function netConnectionHandler(event:NetStatusEvent):void
{
switch (event.info.code)
{
case "NetConnection.Connect.Success":
trace("connectSuccess");
break;
}
}