Commit ba6be2af authored by Andrea Bulgarelli's avatar Andrea Bulgarelli
Browse files

bugs

parent 37ec0819
Loading
Loading
Loading
Loading
+0 −0

File moved.

+0 −0

File moved.

+2 −1
Original line number Diff line number Diff line
@@ -37,7 +37,8 @@ public:

    virtual void close() throw(PacketExceptionIO*);

    virtual ByteStream* readByteStream(int n_byte) throw(PacketExceptionIO*);
    virtual ByteStream* readByteStream(dword n_byte) throw(PacketExceptionIO*);


    virtual char* readString() throw(PacketExceptionIO*);

+4 −0
Original line number Diff line number Diff line
@@ -188,6 +188,10 @@ public:

    bool thereIsPrefix();

    bool isBigendian() {
    	return bigendian;
    }

    
    /// This attribute represents the packet header.
    PacketHeader *header;
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ void InputSocketServer::close() throw(PacketExceptionIO*)



ByteStream* InputSocketServer::readByteStream(int n_byte) throw(PacketExceptionIO*)
ByteStream* InputSocketServer::readByteStream(dword n_byte) throw(PacketExceptionIO*)
{
    int status = 0;
    if(!accepted)
Loading