X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Fconnection.h;h=0b5d5e23019266e4496ffd5e2edcf512548bc7c5;hb=07ff1da6ae0728fa2f7bbf5d0e188e986344a0db;hp=c67aa5feb6f1f8b1e095966c1f7e5d5c8592d8c1;hpb=4e249fb3fbf75f0359758760d88e22aa5b14533c;p=dragonfireclient.git diff --git a/src/connection.h b/src/connection.h index c67aa5feb..0b5d5e230 100644 --- a/src/connection.h +++ b/src/connection.h @@ -1,3 +1,22 @@ +/* +Minetest-c55 +Copyright (C) 2010 celeron55, Perttu Ahola + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along +with this program; if not, write to the Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +*/ + #ifndef CONNECTION_HEADER #define CONNECTION_HEADER @@ -190,7 +209,7 @@ TODO: Should we have a receiver_peer_id also? Only channels 0, 1 and 2 exist. */ #define BASE_HEADER_SIZE 7 -#define PEER_ID_NEW 0 +#define PEER_ID_INEXISTENT 0 #define PEER_ID_SERVER 1 #define CHANNEL_COUNT 3 /* @@ -207,12 +226,15 @@ controltype and data description: CONTROLTYPE_SET_PEER_ID [2] u16 peer_id_new CONTROLTYPE_PING - - This can be sent in a reliable packet to get a reply + - There is no actual reply, but this can be sent in a reliable + packet to get a reply + CONTROLTYPE_DISCO */ #define TYPE_CONTROL 0 #define CONTROLTYPE_ACK 0 #define CONTROLTYPE_SET_PEER_ID 1 #define CONTROLTYPE_PING 2 +#define CONTROLTYPE_DISCO 3 /* ORIGINAL: This is a plain packet with no control and no error checking at all. @@ -423,12 +445,15 @@ class Connection void Connect(Address address); bool Connected(); + void Disconnect(); + // Sets peer_id SharedBuffer GetFromBuffers(u16 &peer_id); // The peer_id of sender is stored in peer_id // Return value: I guess this always throws an exception or // actually gets data + // May call PeerHandler methods u32 Receive(u16 &peer_id, u8 *data, u32 datasize); // These will automatically package the data as an original or split @@ -441,12 +466,18 @@ class Connection // Sends a raw packet void RawSend(const BufferedPacket &packet); + // May call PeerHandler methods void RunTimeouts(float dtime); + // Can throw a PeerNotFoundException Peer* GetPeer(u16 peer_id); // returns NULL if failed Peer* GetPeerNoEx(u16 peer_id); core::list GetPeers(); + + // Calls PeerHandler::deletingPeer + // Returns false if peer was not found + bool deletePeer(u16 peer_id, bool timeout); void SetPeerID(u16 id){ m_peer_id = id; } u16 GetPeerID(){ return m_peer_id; }