Package org.asteriskjava.iax.util

Examples of org.asteriskjava.iax.util.ByteBuffer.slice()


            throw new IllegalArgumentException("Not a miniframe, but fullframe.");
        } else {
            _fullBit = false;
        }
        setTimestampVal(buf.getChar());
        _data = buf.slice();
        _call = call;
    }


    /**
 
View Full Code Here


        _subclass = buf.get();
        if (_subclass < 0) {
            _subclass = 1 << (_subclass & 0x7f);
            _cbit = true;
        }
        _data = buf.slice();
        _call = call;
    }

    /**
     * The outbound constructor.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.