summaryrefslogtreecommitdiff
path: root/libopie2/opienet/opcap.h
authormickeyl <mickeyl>2003-10-06 17:38:19 (UTC)
committer mickeyl <mickeyl>2003-10-06 17:38:19 (UTC)
commit42aefe8bc6a8089b771d6f109fed22a770295cc8 (patch) (side-by-side diff)
tree3233ee1af3d857cd2fddca3b27623cee8d2aa45b /libopie2/opienet/opcap.h
parente0acd0d9400bb489415d21ec715c5f6704c22b95 (diff)
downloadopie-42aefe8bc6a8089b771d6f109fed22a770295cc8.zip
opie-42aefe8bc6a8089b771d6f109fed22a770295cc8.tar.gz
opie-42aefe8bc6a8089b771d6f109fed22a770295cc8.tar.bz2
add client mac address decoding to DHCP
Diffstat (limited to 'libopie2/opienet/opcap.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opienet/opcap.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libopie2/opienet/opcap.h b/libopie2/opienet/opcap.h
index f0d1d81..51f067a 100644
--- a/libopie2/opienet/opcap.h
+++ b/libopie2/opienet/opcap.h
@@ -504,16 +504,18 @@ class ODHCPPacket : public QObject
ODHCPPacket( const unsigned char*, const struct dhcp_packet*, QObject* parent = 0 );
virtual ~ODHCPPacket();
QHostAddress clientAddress() const;
QHostAddress yourAddress() const;
QHostAddress serverAddress() const;
QHostAddress relayAddress() const;
+ OMacAddress clientMacAddress() const;
+
bool isRequest() const;
bool isReply() const;
QString type() const;
private:
const struct dhcp_packet* _dhcphdr;
unsigned char _type;
};