Method: Capp#stop
- Defined in:
- ext/capp/capp.c
#stop ⇒ Object
Stops a running loop
1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 |
# File 'ext/capp/capp.c', line 1123 static VALUE capp_stop(VALUE self) { pcap_t *handle; GetCapp(self, handle); pcap_breakloop(handle); return self; } |