Method: Capp.pcap_lib_version

Defined in:
ext/capp/capp.c

.pcap_lib_versionObject

Returns the libpcap version string:

Capp.pcap_lib_version #=> "libpcap version 1.1.1"


416
417
418
419
420
# File 'ext/capp/capp.c', line 416

static VALUE
capp_s_pcap_lib_version(VALUE klass)
{
    return rb_usascii_str_new_cstr(pcap_lib_version());
}