Esempio n. 1
0
        public TftpPacket(Byte[] data, int dataLength)
        {
            Options = new TftpPacketOptions();

            FromArray(data, dataLength);
        }
Esempio n. 2
0
        public TftpPacket(TftpPacketType type)
        {
            Options = new TftpPacketOptions();

            Type = type;
        }