aboutsummaryrefslogtreecommitdiffstats
path: root/heimdall/source/BridgeManager.h
diff options
context:
space:
mode:
authorBenjamin Dobell <benjamin.dobell+git@glassechidna.com.au>2014-05-18 04:18:36 +1000
committerBenjamin Dobell <benjamin.dobell+git@glassechidna.com.au>2014-05-18 04:18:36 +1000
commitfd23c07ef525f836d4974189ae5c7f3ecb0bb640 (patch)
tree4dd5ed360121e5a479954c88fd19bd2cfcbe39ec /heimdall/source/BridgeManager.h
parentfc0d542bc28b86b1fa3402ab6878c7dea450d0c6 (diff)
downloadexternal_heimdall-fd23c07ef525f836d4974189ae5c7f3ecb0bb640.zip
external_heimdall-fd23c07ef525f836d4974189ae5c7f3ecb0bb640.tar.gz
external_heimdall-fd23c07ef525f836d4974189ae5c7f3ecb0bb640.tar.bz2
Removed unused optional parameters in BridgeManager.
Diffstat (limited to 'heimdall/source/BridgeManager.h')
-rw-r--r--heimdall/source/BridgeManager.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/heimdall/source/BridgeManager.h b/heimdall/source/BridgeManager.h
index 9ebbdae..6b967fa 100644
--- a/heimdall/source/BridgeManager.h
+++ b/heimdall/source/BridgeManager.h
@@ -125,7 +125,7 @@ namespace Heimdall
bool InitialiseProtocol(void);
- bool SendBulkTransfer(unsigned char *data, int length, int timeout = 3000, bool retry = true) const;
+ bool SendBulkTransfer(unsigned char *data, int length, int timeout = 3000) const;
public:
@@ -138,8 +138,8 @@ namespace Heimdall
bool BeginSession(void);
bool EndSession(bool reboot) const;
- bool SendPacket(OutboundPacket *packet, int timeout = 3000, bool retry = true) const;
- bool ReceivePacket(InboundPacket *packet, int timeout = 3000, bool retry = true, unsigned char *buffer = nullptr, unsigned int bufferSize = -1) const;
+ bool SendPacket(OutboundPacket *packet, int timeout = 3000) const;
+ bool ReceivePacket(InboundPacket *packet, int timeout = 3000) const;
bool RequestDeviceType(unsigned int request, int *result) const;