I want to build DHCP
packet and in the build process i am get params from user for example Agent Circuit Id
(string) - attribute number 82.
After build my packet i am send this packet and see the result via Wireshark
My problem is that when i see my packet i see my Agent Circuit Id
value as hex and i want to see this value as byte for example:
string agentCircuitId = "33445566778899";
i want this field will be 2 bytes 33 44 55 66 77 88 99
in my result i try the string "1234" and the result is 31 32 33 34
http://s27.postimg.org/bdhe9j4hv/123.png
Any idea how to do that ?