comparison src/neon/neon.c @ 2523:769e17da93dd

Replaced s/ConfigDb/mcs_handle_t/g, as per changes in the core.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 09 Apr 2008 15:48:36 +0300
parents 194c2f8c2a92
children 6fd05978fd4b
comparison
equal deleted inserted replaced
2522:7b5b4a51ea6e 2523:769e17da93dd
479 * ----- 479 * -----
480 */ 480 */
481 481
482 static int neon_proxy_auth_cb(void *userdata, const char *realm, int attempt, char *username, char *password) { 482 static int neon_proxy_auth_cb(void *userdata, const char *realm, int attempt, char *username, char *password) {
483 483
484 ConfigDb *db; 484 mcs_handle_t *db;
485 gchar *value = NULL; 485 gchar *value = NULL;
486 486
487 _ENTER; 487 _ENTER;
488 488
489 if ((db = aud_cfg_db_open()) == NULL) { 489 if ((db = aud_cfg_db_open()) == NULL) {
610 */ 610 */
611 611
612 static int open_handle(struct neon_handle* handle, unsigned long startbyte) { 612 static int open_handle(struct neon_handle* handle, unsigned long startbyte) {
613 613
614 int ret; 614 int ret;
615 ConfigDb* db; 615 mcs_handle_t* db;
616 gchar* proxy_host = NULL; 616 gchar* proxy_host = NULL;
617 gchar* proxy_port_s = NULL; 617 gchar* proxy_port_s = NULL;
618 gchar* endptr; 618 gchar* endptr;
619 unsigned int proxy_port = 0; 619 unsigned int proxy_port = 0;
620 gboolean use_proxy, use_proxy_auth; 620 gboolean use_proxy, use_proxy_auth;