Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kaetemi committed Feb 21, 2023
1 parent 0167391 commit 79a899e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 51 deletions.
5 changes: 1 addition & 4 deletions ryzom/server/src/frontend_service/quic_transceiver.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
// Ryzom - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
// Copyright (C) 2010 Winch Gate Property Limited
//
// This source file has been modified by the following contributors:
// Copyright (C) 2014 Jan BOON (Kaetemi) <[email protected]>
// Copyright (C) 2023 Jan BOON (Kaetemi) <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
Expand Down
47 changes: 0 additions & 47 deletions ryzom/server/src/frontend_service/quic_transceiver.h
Original file line number Diff line number Diff line change
Expand Up @@ -175,53 +175,6 @@ class CQuicTransceiver

/// Generates a token address to identify the connection with existing code
NLNET::CInetAddress generateTokenAddr();

// public:
// /// Constructor
// CFEReceiveTask(uint16 firstAcceptablePort, uint16 lastAcceptablePort, uint32 msgsize);
//
// /// Destructor
// ~CFEReceiveTask();
//
// /// Run
// virtual void run();
//
// /// Set new write queue (thread-safe because mutexed)
// void setWriteQueue(NLMISC::CBufFIFO *writequeue);
//
// /// Require exit (thread-safe because atomic assignment)
// void requireExit() { _ExitRequired = true; }
//
// /// Return the number of rejected datagrams since the last call (thread-safe because atomic assignment)
// uint nbNewRejectedDatagrams()
// {
// uint nb = _NbRejectedDatagrams;
// _NbRejectedDatagrams = 0;
// return nb;
// }
//
// private:
// /// Datagram length
// uint _DatagramLength;
//
// /// Received message
// TReceivedMessage _ReceivedMessage;
//
// /// Write queue access
// NLMISC::CSynchronized<NLMISC::CBufFIFO *> _WriteQueue;
//
// /// Number of datagrams not copied because too big
// volatile uint _NbRejectedDatagrams;
//
// /// Exit required
// volatile bool _ExitRequired;
//
// public:
// /// External datagram socket
// NLNET::CUdpSock *DataSock;
//
// /// The date of the last UPD packet recevied
// static volatile uint32 LastUDPPacketReceived;
};

#endif /* NL_QUIC_TRANSCEIVER_H */
Expand Down

0 comments on commit 79a899e

Please sign in to comment.