2010-04-02 18:18:27 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the sigrok project.
|
|
|
|
*
|
2012-02-13 13:31:51 +00:00
|
|
|
* Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
|
2010-04-02 18:18:27 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <glib.h>
|
2011-12-28 22:07:08 +00:00
|
|
|
#include "sigrok.h"
|
|
|
|
#include "sigrok-internal.h"
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2010-04-15 18:16:53 +00:00
|
|
|
/*
|
2012-02-28 22:52:30 +00:00
|
|
|
* This enumerates which driver capabilities correspond to user-settable
|
2010-04-15 18:16:53 +00:00
|
|
|
* options.
|
|
|
|
*/
|
2011-02-15 18:24:52 +00:00
|
|
|
/* TODO: This shouldn't be a global. */
|
2012-02-01 22:40:35 +00:00
|
|
|
SR_API struct sr_hwcap_option sr_hwcap_options[] = {
|
2011-01-30 16:58:41 +00:00
|
|
|
{SR_HWCAP_SAMPLERATE, SR_T_UINT64, "Sample rate", "samplerate"},
|
|
|
|
{SR_HWCAP_CAPTURE_RATIO, SR_T_UINT64, "Pre-trigger capture ratio", "captureratio"},
|
2012-03-20 17:09:18 +00:00
|
|
|
{SR_HWCAP_PATTERN_MODE, SR_T_CHAR, "Pattern generator mode", "pattern"},
|
2011-11-19 00:41:41 +00:00
|
|
|
{SR_HWCAP_RLE, SR_T_BOOL, "Run Length Encoding", "rle"},
|
2010-05-18 22:38:14 +00:00
|
|
|
{0, 0, NULL, NULL},
|
2010-04-02 18:18:27 +00:00
|
|
|
};
|
|
|
|
|
2011-01-11 21:17:33 +00:00
|
|
|
#ifdef HAVE_LA_DEMO
|
2012-02-28 22:52:30 +00:00
|
|
|
extern SR_PRIV struct sr_dev_driver demo_driver_info;
|
2011-01-11 21:17:33 +00:00
|
|
|
#endif
|
2010-06-24 23:11:11 +00:00
|
|
|
#ifdef HAVE_LA_SALEAE_LOGIC
|
2012-02-28 22:52:30 +00:00
|
|
|
extern SR_PRIV struct sr_dev_driver saleae_logic_driver_info;
|
2010-06-24 23:11:11 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LA_OLS
|
2012-02-28 22:52:30 +00:00
|
|
|
extern SR_PRIV struct sr_dev_driver ols_driver_info;
|
2010-06-24 23:11:11 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LA_ZEROPLUS_LOGIC_CUBE
|
2012-02-28 22:52:30 +00:00
|
|
|
extern SR_PRIV struct sr_dev_driver zeroplus_logic_cube_driver_info;
|
2010-06-24 23:11:11 +00:00
|
|
|
#endif
|
2010-05-31 09:34:10 +00:00
|
|
|
#ifdef HAVE_LA_ASIX_SIGMA
|
2012-02-28 22:52:30 +00:00
|
|
|
extern SR_PRIV struct sr_dev_driver asix_sigma_driver_info;
|
2010-05-31 09:34:10 +00:00
|
|
|
#endif
|
2011-04-04 17:40:30 +00:00
|
|
|
#ifdef HAVE_LA_CHRONOVU_LA8
|
2012-02-28 22:52:30 +00:00
|
|
|
extern SR_PRIV struct sr_dev_driver chronovu_la8_driver_info;
|
2011-04-04 17:40:30 +00:00
|
|
|
#endif
|
2011-01-19 23:39:59 +00:00
|
|
|
#ifdef HAVE_LA_LINK_MSO19
|
2012-02-28 22:52:30 +00:00
|
|
|
extern SR_PRIV struct sr_dev_driver link_mso19_driver_info;
|
2011-01-19 23:39:59 +00:00
|
|
|
#endif
|
2011-01-22 02:57:27 +00:00
|
|
|
#ifdef HAVE_LA_ALSA
|
2012-02-28 22:52:30 +00:00
|
|
|
extern SR_PRIV struct sr_dev_driver alsa_driver_info;
|
2011-01-22 02:57:27 +00:00
|
|
|
#endif
|
2012-02-11 12:08:49 +00:00
|
|
|
#ifdef HAVE_LA_FX2LAFW
|
2012-02-28 22:52:30 +00:00
|
|
|
extern SR_PRIV struct sr_dev_driver fx2lafw_driver_info;
|
2012-02-11 12:08:49 +00:00
|
|
|
#endif
|
2011-01-22 02:57:27 +00:00
|
|
|
|
2012-02-28 22:52:30 +00:00
|
|
|
static struct sr_dev_driver *drivers_list[] = {
|
2011-01-11 21:17:33 +00:00
|
|
|
#ifdef HAVE_LA_DEMO
|
2012-02-28 22:52:30 +00:00
|
|
|
&demo_driver_info,
|
2011-01-11 21:17:33 +00:00
|
|
|
#endif
|
2010-06-24 23:11:11 +00:00
|
|
|
#ifdef HAVE_LA_SALEAE_LOGIC
|
2012-02-28 22:52:30 +00:00
|
|
|
&saleae_logic_driver_info,
|
2010-06-24 23:11:11 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LA_OLS
|
2012-02-28 22:52:30 +00:00
|
|
|
&ols_driver_info,
|
2010-06-24 23:11:11 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LA_ZEROPLUS_LOGIC_CUBE
|
2012-02-28 22:52:30 +00:00
|
|
|
&zeroplus_logic_cube_driver_info,
|
2010-06-24 23:11:11 +00:00
|
|
|
#endif
|
2010-05-31 09:34:10 +00:00
|
|
|
#ifdef HAVE_LA_ASIX_SIGMA
|
2012-02-28 22:52:30 +00:00
|
|
|
&asix_sigma_driver_info,
|
2010-05-31 09:34:10 +00:00
|
|
|
#endif
|
2011-04-04 17:40:30 +00:00
|
|
|
#ifdef HAVE_LA_CHRONOVU_LA8
|
2012-02-28 22:52:30 +00:00
|
|
|
&chronovu_la8_driver_info,
|
2011-04-04 17:40:30 +00:00
|
|
|
#endif
|
2011-01-19 23:39:59 +00:00
|
|
|
#ifdef HAVE_LA_LINK_MSO19
|
2012-02-28 22:52:30 +00:00
|
|
|
&link_mso19_driver_info,
|
2011-01-19 23:39:59 +00:00
|
|
|
#endif
|
2011-01-22 02:57:27 +00:00
|
|
|
#ifdef HAVE_LA_ALSA
|
2012-02-28 22:52:30 +00:00
|
|
|
&alsa_driver_info,
|
2012-02-11 12:08:49 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LA_FX2LAFW
|
2012-02-28 22:52:30 +00:00
|
|
|
&fx2lafw_driver_info,
|
2011-01-22 02:57:27 +00:00
|
|
|
#endif
|
2012-02-22 20:48:30 +00:00
|
|
|
NULL,
|
|
|
|
};
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-02-13 02:36:32 +00:00
|
|
|
/**
|
2012-02-29 18:56:15 +00:00
|
|
|
* Return the list of supported hardware drivers.
|
2012-02-13 02:36:32 +00:00
|
|
|
*
|
2012-02-28 22:52:30 +00:00
|
|
|
* @return Pointer to the NULL-terminated list of hardware driver pointers.
|
2012-02-13 02:36:32 +00:00
|
|
|
*/
|
2012-02-29 18:56:15 +00:00
|
|
|
SR_API struct sr_dev_driver **sr_driver_list(void)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2012-02-28 22:52:30 +00:00
|
|
|
return drivers_list;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2012-02-13 02:36:32 +00:00
|
|
|
/**
|
2012-02-28 22:52:30 +00:00
|
|
|
* Initialize a hardware driver.
|
2012-02-13 02:36:32 +00:00
|
|
|
*
|
2012-02-28 22:52:30 +00:00
|
|
|
* The specified driver is initialized, and all devices discovered by the
|
|
|
|
* driver are instantiated.
|
2012-02-13 02:36:32 +00:00
|
|
|
*
|
2012-02-28 22:52:30 +00:00
|
|
|
* @param driver The driver to initialize.
|
2012-02-13 02:36:32 +00:00
|
|
|
*
|
2012-02-28 22:52:30 +00:00
|
|
|
* @return The number of devices found and instantiated by the driver.
|
2012-02-13 02:36:32 +00:00
|
|
|
*/
|
2012-02-29 18:56:15 +00:00
|
|
|
SR_API int sr_driver_init(struct sr_dev_driver *driver)
|
2011-04-04 03:13:29 +00:00
|
|
|
{
|
2012-02-17 21:25:01 +00:00
|
|
|
int num_devs, num_probes, i, j;
|
|
|
|
int num_initialized_devs = 0;
|
|
|
|
struct sr_dev *dev;
|
2011-12-29 16:04:31 +00:00
|
|
|
char **probe_names;
|
2011-04-04 03:13:29 +00:00
|
|
|
|
2012-02-28 22:52:30 +00:00
|
|
|
sr_dbg("initializing %s driver", driver->name);
|
|
|
|
num_devs = driver->init(NULL);
|
2012-02-17 21:25:01 +00:00
|
|
|
for (i = 0; i < num_devs; i++) {
|
2011-11-19 00:41:41 +00:00
|
|
|
num_probes = GPOINTER_TO_INT(
|
2012-02-28 22:52:30 +00:00
|
|
|
driver->dev_info_get(i, SR_DI_NUM_PROBES));
|
|
|
|
probe_names = (char **)driver->dev_info_get(i,
|
2011-12-29 18:50:14 +00:00
|
|
|
SR_DI_PROBE_NAMES);
|
2011-12-29 16:04:31 +00:00
|
|
|
|
|
|
|
if (!probe_names) {
|
2012-02-28 22:52:30 +00:00
|
|
|
sr_warn("hwdriver: %s: driver %s does not return a "
|
|
|
|
"list of probe names", __func__, driver->name);
|
2011-12-29 16:04:31 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-02-28 22:52:30 +00:00
|
|
|
dev = sr_dev_new(driver, i);
|
2011-12-29 18:50:14 +00:00
|
|
|
for (j = 0; j < num_probes; j++)
|
2012-02-17 21:25:01 +00:00
|
|
|
sr_dev_probe_add(dev, probe_names[j]);
|
|
|
|
num_initialized_devs++;
|
2011-04-04 03:13:29 +00:00
|
|
|
}
|
|
|
|
|
2012-02-17 21:25:01 +00:00
|
|
|
return num_initialized_devs;
|
2011-04-04 03:13:29 +00:00
|
|
|
}
|
|
|
|
|
2012-02-15 02:18:48 +00:00
|
|
|
SR_PRIV void sr_hw_cleanup_all(void)
|
2011-04-04 03:13:29 +00:00
|
|
|
{
|
2012-02-22 20:48:30 +00:00
|
|
|
int i;
|
2012-02-28 22:52:30 +00:00
|
|
|
struct sr_dev_driver **drivers;
|
2011-04-04 03:13:29 +00:00
|
|
|
|
2012-02-29 18:56:15 +00:00
|
|
|
drivers = sr_driver_list();
|
2012-02-28 22:52:30 +00:00
|
|
|
for (i = 0; drivers[i]; i++) {
|
|
|
|
if (drivers[i]->cleanup)
|
|
|
|
drivers[i]->cleanup();
|
2011-04-04 03:13:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-17 20:02:52 +00:00
|
|
|
SR_PRIV struct sr_dev_inst *sr_dev_inst_new(int index, int status,
|
2010-05-18 22:38:14 +00:00
|
|
|
const char *vendor, const char *model, const char *version)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2012-02-17 20:02:52 +00:00
|
|
|
struct sr_dev_inst *sdi;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-02-17 20:02:52 +00:00
|
|
|
if (!(sdi = g_try_malloc(sizeof(struct sr_dev_inst)))) {
|
2012-02-28 22:52:30 +00:00
|
|
|
sr_err("hwdriver: %s: sdi malloc failed", __func__);
|
2010-04-02 18:18:27 +00:00
|
|
|
return NULL;
|
2012-02-11 19:06:46 +00:00
|
|
|
}
|
2010-04-02 18:18:27 +00:00
|
|
|
|
|
|
|
sdi->index = index;
|
|
|
|
sdi->status = status;
|
2012-02-17 22:55:27 +00:00
|
|
|
sdi->inst_type = -1;
|
2011-04-04 03:13:29 +00:00
|
|
|
sdi->vendor = vendor ? g_strdup(vendor) : NULL;
|
|
|
|
sdi->model = model ? g_strdup(model) : NULL;
|
|
|
|
sdi->version = version ? g_strdup(version) : NULL;
|
2011-01-10 17:15:51 +00:00
|
|
|
sdi->priv = NULL;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
|
|
|
return sdi;
|
|
|
|
}
|
|
|
|
|
2012-02-17 21:25:01 +00:00
|
|
|
SR_PRIV struct sr_dev_inst *sr_dev_inst_get(GSList *dev_insts, int dev_index)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2012-02-17 20:02:52 +00:00
|
|
|
struct sr_dev_inst *sdi;
|
2010-04-02 18:18:27 +00:00
|
|
|
GSList *l;
|
|
|
|
|
2012-02-17 20:02:52 +00:00
|
|
|
for (l = dev_insts; l; l = l->next) {
|
|
|
|
sdi = (struct sr_dev_inst *)(l->data);
|
2012-02-17 21:25:01 +00:00
|
|
|
if (sdi->index == dev_index)
|
2010-04-02 18:18:27 +00:00
|
|
|
return sdi;
|
|
|
|
}
|
2012-02-17 21:25:01 +00:00
|
|
|
sr_warn("could not find device index %d instance", dev_index);
|
2010-04-02 18:18:27 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-02-17 20:02:52 +00:00
|
|
|
SR_PRIV void sr_dev_inst_free(struct sr_dev_inst *sdi)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2012-01-18 23:32:02 +00:00
|
|
|
g_free(sdi->priv);
|
2011-04-04 03:13:29 +00:00
|
|
|
g_free(sdi->vendor);
|
|
|
|
g_free(sdi->model);
|
|
|
|
g_free(sdi->version);
|
|
|
|
g_free(sdi);
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2011-02-02 09:25:52 +00:00
|
|
|
#ifdef HAVE_LIBUSB_1_0
|
|
|
|
|
2012-02-17 20:02:52 +00:00
|
|
|
SR_PRIV struct sr_usb_dev_inst *sr_usb_dev_inst_new(uint8_t bus,
|
2010-04-15 18:16:53 +00:00
|
|
|
uint8_t address, struct libusb_device_handle *hdl)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2012-02-17 20:02:52 +00:00
|
|
|
struct sr_usb_dev_inst *udi;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-02-17 20:02:52 +00:00
|
|
|
if (!(udi = g_try_malloc(sizeof(struct sr_usb_dev_inst)))) {
|
2012-02-28 22:52:30 +00:00
|
|
|
sr_err("hwdriver: %s: udi malloc failed", __func__);
|
2010-04-02 18:18:27 +00:00
|
|
|
return NULL;
|
2012-02-11 19:06:46 +00:00
|
|
|
}
|
2010-04-02 18:18:27 +00:00
|
|
|
|
|
|
|
udi->bus = bus;
|
|
|
|
udi->address = address;
|
2010-05-18 22:38:14 +00:00
|
|
|
udi->devhdl = hdl; /* TODO: Check if this is NULL? */
|
2010-04-02 18:18:27 +00:00
|
|
|
|
|
|
|
return udi;
|
|
|
|
}
|
|
|
|
|
2012-02-17 20:02:52 +00:00
|
|
|
SR_PRIV void sr_usb_dev_inst_free(struct sr_usb_dev_inst *usb)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2011-01-13 22:50:34 +00:00
|
|
|
/* Avoid compiler warnings. */
|
2011-11-24 21:57:48 +00:00
|
|
|
(void)usb;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2010-04-15 18:16:53 +00:00
|
|
|
/* Nothing to do for this device instance type. */
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2011-02-02 09:25:52 +00:00
|
|
|
#endif
|
|
|
|
|
2012-02-17 20:02:52 +00:00
|
|
|
SR_PRIV struct sr_serial_dev_inst *sr_serial_dev_inst_new(const char *port,
|
|
|
|
int fd)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2012-02-17 20:02:52 +00:00
|
|
|
struct sr_serial_dev_inst *serial;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-02-17 20:02:52 +00:00
|
|
|
if (!(serial = g_try_malloc(sizeof(struct sr_serial_dev_inst)))) {
|
2012-02-28 22:52:30 +00:00
|
|
|
sr_err("hwdriver: %s: serial malloc failed", __func__);
|
2010-04-02 18:18:27 +00:00
|
|
|
return NULL;
|
2012-02-11 19:06:46 +00:00
|
|
|
}
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-02-11 19:06:46 +00:00
|
|
|
serial->port = g_strdup(port);
|
2010-04-02 18:18:27 +00:00
|
|
|
serial->fd = fd;
|
|
|
|
|
|
|
|
return serial;
|
|
|
|
}
|
|
|
|
|
2012-02-17 20:02:52 +00:00
|
|
|
SR_PRIV void sr_serial_dev_inst_free(struct sr_serial_dev_inst *serial)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2012-02-11 19:06:46 +00:00
|
|
|
g_free(serial->port);
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2012-02-13 02:36:32 +00:00
|
|
|
/**
|
2012-02-28 22:52:30 +00:00
|
|
|
* Find out if a hardware driver has a specific capability.
|
2012-02-13 02:36:32 +00:00
|
|
|
*
|
2012-02-28 22:52:30 +00:00
|
|
|
* @param driver The hardware driver in which to search for the capability.
|
2012-02-13 02:36:32 +00:00
|
|
|
* @param hwcap The capability to find in the list.
|
|
|
|
*
|
2012-02-29 18:32:39 +00:00
|
|
|
* @return TRUE if the specified capability exists in the specified driver,
|
|
|
|
* FALSE otherwise. Also, if 'driver' is NULL or the respective driver
|
|
|
|
* returns an invalid capability list, FALSE is returned.
|
2012-02-13 02:36:32 +00:00
|
|
|
*/
|
2012-02-29 18:56:15 +00:00
|
|
|
SR_API gboolean sr_driver_hwcap_exists(struct sr_dev_driver *driver, int hwcap)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2012-02-17 23:17:18 +00:00
|
|
|
int *hwcaps, i;
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-02-29 18:32:39 +00:00
|
|
|
if (!driver) {
|
|
|
|
sr_err("hwdriver: %s: driver was NULL", __func__);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(hwcaps = driver->hwcap_get_all())) {
|
|
|
|
sr_err("hwdriver: %s: hwcap_get_all() returned NULL", __func__);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-02-17 23:17:18 +00:00
|
|
|
for (i = 0; hwcaps[i]; i++) {
|
|
|
|
if (hwcaps[i] == hwcap)
|
2010-04-02 18:18:27 +00:00
|
|
|
return TRUE;
|
2010-05-18 22:38:14 +00:00
|
|
|
}
|
2010-04-02 18:18:27 +00:00
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-02-13 02:36:32 +00:00
|
|
|
/**
|
2012-02-28 22:52:30 +00:00
|
|
|
* Get a hardware driver capability option.
|
2012-02-13 02:36:32 +00:00
|
|
|
*
|
2012-02-15 02:18:48 +00:00
|
|
|
* @param hwcap The capability to get.
|
2012-02-13 02:36:32 +00:00
|
|
|
*
|
2012-02-17 19:44:19 +00:00
|
|
|
* @return A pointer to a struct with information about the parameter, or NULL
|
|
|
|
* if the capability was not found.
|
2012-02-13 02:36:32 +00:00
|
|
|
*/
|
2012-02-15 02:18:48 +00:00
|
|
|
SR_API struct sr_hwcap_option *sr_hw_hwcap_get(int hwcap)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2012-02-17 23:17:18 +00:00
|
|
|
for (i = 0; sr_hwcap_options[i].hwcap; i++) {
|
|
|
|
if (sr_hwcap_options[i].hwcap == hwcap)
|
2011-02-15 18:24:52 +00:00
|
|
|
return &sr_hwcap_options[i];
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2010-05-18 22:38:14 +00:00
|
|
|
return NULL;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2011-01-30 01:40:55 +00:00
|
|
|
/* unnecessary level of indirection follows. */
|
|
|
|
|
2012-02-12 22:57:43 +00:00
|
|
|
SR_PRIV void sr_source_remove(int fd)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2011-02-08 17:00:49 +00:00
|
|
|
sr_session_source_remove(fd);
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2012-02-12 22:57:43 +00:00
|
|
|
SR_PRIV void sr_source_add(int fd, int events, int timeout,
|
2012-02-29 21:32:34 +00:00
|
|
|
sr_receive_data_callback_t cb, void *cb_data)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2012-02-29 21:32:34 +00:00
|
|
|
sr_session_source_add(fd, events, timeout, cb, cb_data);
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|