Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/proxy/src/lib/network/network_socket.h @ 9360

Last change on this file since 9360 was 9347, checked in by bensch, 18 years ago

orxonox/proxy: merged the proxy.old back again, and it seems to work.

Merged with command
svn merge -r9247:HEAD https://svn.orxonox.net/orxonox/branches/proxy.old .

no conflicts

File size: 2.0 KB
RevLine 
[5531]1/*!
2 * @file network_socket.h
3  *  Main interface for the network module. Manages all the modules
4
5*/
6
7#ifndef _NETWORK_SOCKET
8#define _NETWORK_SOCKET
9
[5565]10/* include this file, it contains some default definitions */
11#include "netdefs.h"
[5531]12
[5565]13
[5592]14/* include base_object.h since all classes are derived from this one */
15#include "base_object.h"
[5588]16
[5592]17class NetworkSocket : public BaseObject
[5531]18{
[7954]19  public:
20    NetworkSocket();
21    virtual ~NetworkSocket();
[5531]22
[7954]23    /**
24     * connect to server on host with port port
25     * @param host hostname might be xxx.xxx.xxx.xxx or localhost ...
26     * @param port port to connect to
27     */
28    virtual void connectToServer( std::string host, int port ) = 0;
[9347]29
[7954]30    /**
31     * disconnect from server
32     */
33    virtual void disconnectServer() = 0;
[5565]34
[7954]35    /**
[9347]36     * reconnecting to another server by terminating old connection and init a new connection
37     */
38    virtual void reconnectToServer( std::string host, int port) = 0;
39
40    /**
41     * reconnecting to anoter server softly
42     */
43    virtual void reconnectToServerSoft( std::string host, int port) = 0;
44
45    /**
[7954]46     * send packet to connected socket. will be recieved as whole packet
47     * @param data pointer to data to send
48     * @param length lengt of packet to send
49     * @return true on success
50     */
51    virtual bool writePacket(byte * data, int length) = 0;
[9347]52
[7954]53    /**
54     * read a packet sent by another NetworkSocket
55     * @param data data will be copied here
56     * @param maxLength readPacket will not read more than maxLength
57     * @return bytes read. on error less than zero
58     */
59    virtual int readPacket(byte * data, int maxLength) = 0;
[5624]60
[7954]61    /**
62     * check if socket is ok
63     * @return true if socket is ok
64     */
65    inline bool isOk() { return this->bOk; }
[9347]66
67    /** @returns the ip adderess of the destination socket */
68    IPaddress getRemoteAddress() { return ip; }
69
70
[7954]71  protected:
[9347]72    bool              bOk;            //!< check for socket status
[5624]73
[9347]74    IPaddress         ip;             //!< host,port
[5531]75};
76
77
78
[5532]79#endif /* _NETWORK_SOCKET */
Note: See TracBrowser for help on using the repository browser.