File tree Expand file tree Collapse file tree
include/Polymorph/Network Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,6 +24,10 @@ namespace polymorph::network
2424// //////////////////// CONSTRUCTORS/DESTRUCTORS /////////////////////////
2525
2626 public:
27+ SessionStore () = default ;
28+ SessionStore (const SessionStore &);
29+
30+ ~SessionStore () = default ;
2731
2832
2933// ////////////////////--------------------------/////////////////////////
Original file line number Diff line number Diff line change @@ -188,3 +188,10 @@ polymorph::network::SessionId polymorph::network::SessionStore::_findAvailableUd
188188 ++i;
189189 return i;
190190}
191+
192+ polymorph::network::SessionStore::SessionStore (const polymorph::network::SessionStore &other)
193+ : _udpSessions(other._udpSessions), _tcpSessions(other._tcpSessions),
194+ _udpSessionsAuthorizationKeys(other._udpSessionsAuthorizationKeys), _tcpSessionsAuthorizationKeys(other._tcpSessionsAuthorizationKeys)
195+ {
196+
197+ }
You can’t perform that action at this time.
0 commit comments