Example #1
0
        public TftpPacket(Byte[] data, int dataLength)
        {
            Options = new TftpPacketOptions();

            FromArray(data, dataLength);
        }
Example #2
0
        public TftpPacket(TftpPacketType type)
        {
            Options = new TftpPacketOptions();

            Type = type;
        }