Changes in uspace/lib/pcap/src/pcapctl_dump.c [e4cc266:384f081] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/pcap/src/pcapctl_dump.c
re4cc266 r384f081 38 38 #include <str.h> 39 39 #include <stdlib.h> 40 40 #include <stdio.h> 41 #include <ctype.h> 41 42 #include "pcapctl_dump.h" 42 43 #include "pcapdump_iface.h" … … 51 52 } 52 53 53 static errno_t pcapctl_cat_get_svc(const char *drv_name, service_id_t* svc) { 54 static errno_t pcapctl_cat_get_svc(int *index, service_id_t *svc) 55 { 54 56 errno_t rc; 55 57 category_id_t pcap_cat; … … 66 68 if (rc != EOK) { 67 69 printf("Error resolving list of pcap services.\n"); 68 return rc; 69 } 70 70 free(pcap_svcs); 71 return rc; 72 } 73 if (*index < (int)count) { 74 *svc = pcap_svcs[*index]; 75 free(pcap_svcs); 76 return EOK; 77 } 78 79 return ENOENT; 80 } 81 82 errno_t pcapctl_is_valid_device(int *index) 83 { 84 errno_t rc; 85 category_id_t pcap_cat; 86 size_t count; 87 service_id_t *pcap_svcs = NULL; 88 89 rc = loc_category_get_id("pcap", &pcap_cat, 0); 90 if (rc != EOK) { 91 printf("Error resolving category pcap.\n"); 92 return rc; 93 } 94 95 rc = loc_category_get_svcs(pcap_cat, &pcap_svcs, &count); 96 if (rc != EOK) { 97 printf("Error resolving list of pcap services.\n"); 98 free(pcap_svcs); 99 return rc; 100 } 101 if (*index + 1 > (int)count || *index < 0) { 102 return EINVAL; 103 } 104 return EOK; 105 } 106 107 /** 108 * 109 */ 110 errno_t pcapctl_list(void) 111 { 112 errno_t rc; 113 category_id_t pcap_cat; 114 size_t count; 115 service_id_t *pcap_svcs = NULL; 116 117 rc = loc_category_get_id("pcap", &pcap_cat, 0); 118 if (rc != EOK) { 119 printf("Error resolving category pcap.\n"); 120 return rc; 121 } 122 123 rc = loc_category_get_svcs(pcap_cat, &pcap_svcs, &count); 124 if (rc != EOK) { 125 printf("Error resolving list of pcap services.\n"); 126 free(pcap_svcs); 127 return rc; 128 } 129 130 fprintf(stdout, "Devices:\n"); 71 131 for (unsigned i = 0; i < count; ++i) { 72 132 char *name = NULL; 73 133 loc_service_get_name(pcap_svcs[i], &name); 74 if (!str_cmp(drv_name, name)) { 75 *svc = pcap_svcs[i]; 76 return EOK; 77 } 134 fprintf(stdout, "%d. %s\n", i, name); 78 135 } 79 136 free(pcap_svcs); 80 return 1; 81 } 82 83 extern errno_t pcapctl_list(void) { 84 85 errno_t rc; 86 category_id_t pcap_cat; 87 size_t count; 88 service_id_t *pcap_svcs = NULL; 89 90 rc = loc_category_get_id("pcap", &pcap_cat, 0); 91 if (rc != EOK) { 92 printf("Error resolving category pcap.\n"); 93 return rc; 94 } 95 96 rc = loc_category_get_svcs(pcap_cat, &pcap_svcs, &count); 97 if (rc != EOK) { 98 printf("Error resolving list of pcap services.\n"); 99 free(pcap_svcs); 100 return rc; 101 } 102 103 fprintf(stdout, "Services:\n"); 104 for (unsigned i = 0; i < count; ++i) { 105 char *name = NULL; 106 loc_service_get_name(pcap_svcs[i], &name); 107 fprintf(stdout, "service: %s\n", name); 108 } 109 free(pcap_svcs); 110 return EOK; 111 } 112 113 114 errno_t pcapctl_dump_open(const char *svcname, pcapctl_sess_t **rsess) 137 return EOK; 138 } 139 140 /** 141 * 142 */ 143 errno_t pcapctl_dump_open(int *index, pcapctl_sess_t **rsess) 115 144 { 116 145 errno_t rc; … … 120 149 return ENOMEM; 121 150 122 rc = pcapctl_cat_get_svc(svcname, &svc); 123 if (rc != EOK) { 151 rc = pcapctl_cat_get_svc(index, &svc); 152 if (rc != EOK) { 153 printf("Error finding the device with index: %d\n", *index); 124 154 goto error; 125 155 } 156 126 157 async_sess_t *new_session = loc_service_connect(svc, INTERFACE_PCAP_CONTROL, 0); 127 158 if (new_session == NULL) { … … 130 161 goto error; 131 162 } 132 133 163 sess->sess = new_session; 134 164 *rsess = sess; … … 139 169 } 140 170 171 /** 172 * 173 */ 141 174 errno_t pcapctl_dump_close(pcapctl_sess_t *sess) 142 175 {
Note:
See TracChangeset
for help on using the changeset viewer.