aboutsummaryrefslogtreecommitdiffstats
path: root/common/rdr/HexInStream.h
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2022-11-17 15:04:20 +0100
committerPierre Ossman <ossman@cendio.se>2023-02-04 14:03:13 +0100
commit07e541678ca8c55c39780f7960c559a3e9c7ee1e (patch)
tree89f0f53831a9e546e35fdc0cd77451548ffe6874 /common/rdr/HexInStream.h
parentd98720b736eb908d63c1ecb3779fc2a3cd9f4914 (diff)
downloadtigervnc-07e541678ca8c55c39780f7960c559a3e9c7ee1e.tar.gz
tigervnc-07e541678ca8c55c39780f7960c559a3e9c7ee1e.zip
Move hex conversion helpers to util
These are used here and there so let's make them more general rather than hiding them in the stream classes.
Diffstat (limited to 'common/rdr/HexInStream.h')
-rw-r--r--common/rdr/HexInStream.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/common/rdr/HexInStream.h b/common/rdr/HexInStream.h
index 4ce6f7fd..76f91c08 100644
--- a/common/rdr/HexInStream.h
+++ b/common/rdr/HexInStream.h
@@ -29,9 +29,6 @@ namespace rdr {
HexInStream(InStream& is);
virtual ~HexInStream();
- static bool readHexAndShift(char c, int* v);
- static bool hexStrToBin(const char* s, char** data, size_t* length);
-
private:
virtual bool fillBuffer();