mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-08 17:02:23 +00:00
9 lines
98 B
Python
9 lines
98 B
Python
|
#!/usr/bin/python
|
||
|
|
||
|
import ldns
|
||
|
|
||
|
buf = ldns.ldns_buffer(1024)
|
||
|
buf.printf("Test buffer")
|
||
|
print buf
|
||
|
|