[help] GAuth server errors....
I'm running into some issues with starting Gdeliveryd. I've worked out almost every other error I've come across so far. This is the only one that is getting to me. I've searched through google, here, and **********.com. Have come to no conclusions as to what could be causing this. My first thoughts would be Java. But I'm not sure on that. If anyone could help out in any way shape or form I would be VERY grateful. It's only in the startup of gdeliveryd. Here's the full log of that startup...
Code:
=== GDELIVERYD ===
info : TcpManager OnAddSession
TRACE : gdeliveryd::Max player allowed is 6000
info : TRACE : TRACE : Timer update: (0) Wed Feb 4 23:49:24 2009
OnAddSession sid=7
GameDBServer::OnAddSession, sid=7.
info : program started with 1 threads.
info : logclienttcp: OnAddSession
TRACE : gdelivery::connect to gauthd successfully.
TRACE : ganticheatclient:: connect gacd successfully!
info : logclient: OnAddSession
TRACE : gdelivery::connect gfactionserver successfully.
TRACE : DBAuctionList, size=0, handle=0
TRACE : DBStockLoad, size=0, handle=0
TRACE : DBBattleLoad, count=44.
info : OnAddSession
info : OnAddSession
TRACE : dbauctionlist: received. res->items.size()=0,res->handle.size()=0 retcode=0
TRACE : DBStockLoad: retcode=0, size=0, handle=0
TRACE : gfactionserver:: add link(or Delivery) 0 to map.
TRACE : Receive zoneid=1 from delivery
info : OnAddSession
TRACE : BattleManager: Sync map notice to GS.
GAuthServer::OnAddSession com.goldhuman.IO.Protocol.Session@6ac461
Protocol Decode Error:type=2287,size=121
gauthd: 04 Feb 2009 23:49:24,796 INFO GAuthServer:? - GAuthServer::nDelSession com.goldhuman.IO.Protocol.Session@6ac461
gauthd: 04 Feb 2009 23:49:24,800 INFO GAuthServer:? - GAuthServer::OnDelSession com.goldhuman.IO.Protocol.Session@6ac461
err : gdelivery::disconnect from GAuth server. Reconnecting....
TRACE : StockStatus:: uptime=0,trade_price=0,order_volume=0,trade_volume=0,trade_amount=0,idpool=2
TRACE : gdelivery::connect to gauthd successfully.
GAuthServer::OnAddSession com.goldhuman.IO.Protocol.Session@1315d34
Protocol Decode Error:type=2287,size=121
gauthd: 04 Feb 2009 23:49:27,228 INFO GAuthServer:? - GAuthServer::nDelSession com.goldhuman.IO.Protocol.Session@1315d34
gauthd: 04 Feb 2009 23:49:27,228 INFO GAuthServer:? - GAuthServer::OnDelSession com.goldhuman.IO.Protocol.Session@1315d34
err : gdelivery::disconnect from GAuth server. Reconnecting....
Re: [help] GAuth server errors....
EDIT: Found the issue. The ISec, ISecKey, OSec, and OSecKey's were not set correctly.
Re: [help] GAuth server errors....
Re: [help] GAuth server errors....
Yeah, I was setting them like this:
Server = Client
ISecKey = ISecKey
OsecKey = OSecKey
SharedKey = SharedKey
Where my problem was, was that the client iseckey should be the server oseckey. And only the Shared_Key is the same.
So it should've been:
Server = Client
ISecKey = OSecKey
OSecKey = ISecKey
SharedKey = SharedKey
Re: [help] GAuth server errors....
how do you find out what the ISecKey is supposed to be?