this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at fixPythonPipStalling 14 lines 470 B view raw
1#include <stdbool.h> 2#include <uuid/uuid.h> 3 4// The enum name is a guess 5typedef enum ne_session_type { 6 NESessionTypeAppVPN, 7 NESessionTypeVPN 8} ne_session_type_t; 9 10bool ne_session_set_socket_attributes(int socket, char *hostname, void *unknown); 11int ne_session_service_get_dns_service_id(uuid_t uuid, ne_session_type_t session_type, const char *hostname); 12 13// not sure what this type is (it's probably an enum or enum-like type) 14typedef int ne_session_status_t;