~ubuntu-branches/debian/sid/monopd/sid

« back to all changes in this revision

Viewing changes to src/game.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Schepler
  • Date: 2006-08-12 17:05:23 UTC
  • mfrom: (2.1.1 dapper)
  • Revision ID: james.westby@ubuntu.com-20060812170523-scgnd675p5jpg7lw
Tags: 0.9.3-2
* New patch monopd-0.9.3-dosfix.diff for CVE-2006-1046:
  Fixes a remote DOS vulnerability which could cause the daemon to eat up
  CPU time on the server.  Closes: #355797.
* Bump Standards-Version to 3.7.2 (no changes needed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
                Debt *findDebt(Player *player);
113
113
                Debt *findDebtByCreditor(Player *player);
114
114
                void delDebt(Debt *);
115
 
                void solveDebt(Player *player, const bool &verbose = false);
 
115
                void solveDebts(Player *player, const bool &verbose = false);
 
116
                bool solveDebt(Debt *debt);
116
117
                void enforceDebt(Player *pBroke, Debt *debt = 0);
117
118
                void newAuction(Player *pInput);
118
119
                Auction *auction();
175
176
        Status m_status;
176
177
        unsigned int m_nextCardGroupId, m_nextEstateId, m_nextEstateGroupId, m_nextTradeId, m_nextAuctionId;
177
178
 
178
 
        Player *m_master, *m_pTurn;
 
179
        Player *m_master, *m_pTurn, *m_pWinner;
179
180
        Estate *m_goEstate;
180
181
        int m_houses, m_hotels, m_startMoney;
181
182
        bool m_isValid, m_pausedForDialog;