| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- /*
- * Copyright (c) 2014, Oculus VR, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- */
- #include "RakPeerInterface.h"
- #include "BitStream.h"
- #include <stdlib.h> // For atoi
- #include <cstring> // For strlen
- #include <stdio.h>
- #include "MessageIdentifiers.h"
- #include "GetTime.h"
- #include "Gets.h"
- #ifdef _WIN32
- #include "WindowsIncludes.h" // Sleep
- #else
- #include <unistd.h> // usleep
- #include <cstdio>
- #endif
- int nextTest;
- RakNet::RakPeerInterface *peer1=RakNet::RakPeerInterface::GetInstance();
- RakNet::RakPeerInterface *peer2=RakNet::RakPeerInterface::GetInstance();
- int main(void)
- {
- char text[1024];
- bool sentPacket=false;
- nextTest=0;
- printf("This project tests the advertise system and offline ping messages.\n");
- printf("Difficulty: Beginner\n\n");
- peer1->SetMaximumIncomingConnections(1);
- RakNet::SocketDescriptor socketDescriptor(60001, 0);
- peer1->Startup(1, &socketDescriptor, 1);
- socketDescriptor.port=60002;
- peer2->Startup(1, &socketDescriptor, 1);
- peer1->SetOfflinePingResponse("Offline Ping Data", (int)strlen("Offline Ping Data")+1);
- printf("Peer 1 guid = %s\n", peer1->GetGuidFromSystemAddress(RakNet::UNASSIGNED_SYSTEM_ADDRESS).ToString());
- printf("Peer 2 guid = %s\n", peer2->GetGuidFromSystemAddress(RakNet::UNASSIGNED_SYSTEM_ADDRESS).ToString());
- printf("Systems started. Waiting for advertise system packet\n");
- // Wait for connection to complete
- #ifdef _WIN32
- Sleep(300);
- #else
- usleep(300 * 1000);
- #endif
- printf("Sending advertise system from %s\n", peer1->GetGuidFromSystemAddress(RakNet::UNASSIGNED_SYSTEM_ADDRESS).ToString());
- peer1->AdvertiseSystem("127.0.0.1", 60002,"hello world", (int)strlen("hello world")+1);
- while (nextTest!=2)
- {
- peer1->DeallocatePacket(peer1->Receive());
- RakNet::Packet *packet = peer2->Receive();
- if (packet)
- {
- if (packet->data[0]==ID_ADVERTISE_SYSTEM)
- {
- if (packet->length>1)
- printf("Got Advertise system with data: %s\n", packet->data+1);
- else
- printf("Got Advertise system with no data\n");
- printf("Was sent from GUID %s\n", packet->guid.ToString());
- printf("Sending ping from %s\n", peer2->GetGuidFromSystemAddress(RakNet::UNASSIGNED_SYSTEM_ADDRESS).ToString());
- peer2->Ping("127.0.0.1", 60001, false);
- nextTest++;
- }
- else if (packet->data[0]==ID_UNCONNECTED_PONG)
- {
- // Peer or client. Response from a ping for an unconnected system.
- RakNet::TimeMS packetTime, dataLength;
- RakNet::TimeMS curTime = RakNet::GetTimeMS();
- RakNet::BitStream bsIn(packet->data,packet->length,false);
- bsIn.IgnoreBytes(1);
- bsIn.Read(packetTime);
- dataLength = packet->length - sizeof( unsigned char ) - sizeof( RakNet::TimeMS );
- if (peer2->IsLocalIP(packet->systemAddress.ToString(false)))
- printf("ID_UNCONNECTED_PONG from our own");
- else
- printf( "ID_UNCONNECTED_PONG from");
- printf(" %s on %p.\nPing is %i\nData is %i bytes long.\n", packet->systemAddress.ToString(), peer2, curTime-packetTime, dataLength );
- printf("Was sent from GUID %s\n", packet->guid.ToString());
- if ( dataLength > 0 )
- {
- printf( "Data is %s\n", packet->data + sizeof( unsigned char ) + sizeof( RakNet::TimeMS ) );
- RakAssert((int)strlen("Offline Ping Data")+1==packet->length-(sizeof( unsigned char ) + sizeof( RakNet::TimeMS )));
- }
- nextTest++;
- // ProcessUnhandledPacket(packet, ID_UNCONNECTED_PONG,interfaceType);
- }
- peer2->DeallocatePacket(packet);
- }
- #ifdef _WIN32
- Sleep(30);
- #else
- usleep(30 * 1000);
- #endif
- }
- printf("Test complete. Press enter to quit\n");
- Gets(text,sizeof(text));
- RakNet::RakPeerInterface::DestroyInstance(peer1);
- RakNet::RakPeerInterface::DestroyInstance(peer2);
- return 0;
- }
|