summaryrefslogtreecommitdiff
path: root/comm/OLD/dgram.h
diff options
context:
space:
mode:
authorchatty1994-05-10 11:36:23 +0000
committerchatty1994-05-10 11:36:23 +0000
commitb0fff9b9e5becf35cdd051a81d0574a3a6c3be2a (patch)
treef6e866161bb17587d344d0fbdf30cef57b435444 /comm/OLD/dgram.h
parent6f03fc87b2858caf3424639cbba2d38f8f8f3029 (diff)
downloadivy-league-b0fff9b9e5becf35cdd051a81d0574a3a6c3be2a.zip
ivy-league-b0fff9b9e5becf35cdd051a81d0574a3a6c3be2a.tar.gz
ivy-league-b0fff9b9e5becf35cdd051a81d0574a3a6c3be2a.tar.bz2
ivy-league-b0fff9b9e5becf35cdd051a81d0574a3a6c3be2a.tar.xz
replaced TRUE/FALSE by true/false
Diffstat (limited to 'comm/OLD/dgram.h')
-rw-r--r--comm/OLD/dgram.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/comm/OLD/dgram.h b/comm/OLD/dgram.h
index 43dff17..b2f9f77 100644
--- a/comm/OLD/dgram.h
+++ b/comm/OLD/dgram.h
@@ -70,17 +70,17 @@ public:
UchDGRAM (UchAddress*, UchAddress*);
~UchDGRAM ();
- int Send (byte*, int, UchAddress&, bool = FALSE, int retries = 0);
+ int Send (byte*, int, UchAddress&, bool = false, int retries = 0);
int Receive (byte*, int);
- int Reply (byte*, int, bool = FALSE, int retries = 0);
+ int Reply (byte*, int, bool = false, int retries = 0);
- int Send (UchMsgBuffer&, UchAddress&, bool = FALSE, bool = FALSE, int retries = 0);
+ int Send (UchMsgBuffer&, UchAddress&, bool = false, bool = false, int retries = 0);
int Receive (UchMsgBuffer&);
- int Reply (UchMsgBuffer&, bool = FALSE, bool = FALSE, int retries = 0);
+ int Reply (UchMsgBuffer&, bool = false, bool = false, int retries = 0);
- bool Send (UchMessage&, UchAddress&, bool = FALSE, int retries = 0);
+ bool Send (UchMessage&, UchAddress&, bool = false, int retries = 0);
bool Receive (UchMessage* msg);
- bool Reply (UchMessage&, bool = FALSE, int retries = 0);
+ bool Reply (UchMessage&, bool = false, int retries = 0);
virtual bool DiscardNotify (UchMsgBuffer&, UchAddress&);