parse_hostport.c

Go to the documentation of this file.
00001 /*
00002  * $Id$
00003  *
00004  * Copyright (C) 2001-2003 FhG Fokus
00005  *
00006  * This file is part of ser, a free SIP server.
00007  *
00008  * ser is free software; you can redistribute it and/or modify
00009  * it under the terms of the GNU General Public License as published by
00010  * the Free Software Foundation; either version 2 of the License, or
00011  * (at your option) any later version
00012  *
00013  * ser is distributed in the hope that it will be useful,
00014  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00015  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00016  * GNU General Public License for more details.
00017  *
00018  * You should have received a copy of the GNU General Public License 
00019  * along with this program; if not, write to the Free Software 
00020  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00021  */
00022 
00030 #ifdef _OBSOLETED
00031 
00032 #include "parse_hostport.h"
00033 #include <string.h>    /* strlen */
00034 #include "../dprint.h"
00035 #include "../ut.h"     /* str2s */
00036 
00037 char* parse_hostport(char* buf, str* host, short int* port)
00038 {
00039         char *tmp;
00040         int err;
00041 
00042         host->s=buf;
00043         for(tmp=buf;(*tmp)&&(*tmp!=':');tmp++);
00044         host->len=tmp-buf;
00045         if (*tmp==0) {
00046                 *port=0;
00047         } else {
00048                 *tmp=0;
00049                 *port=str2s((unsigned char*)(tmp+1), strlen(tmp+1), &err);
00050                 if (err ){
00051                         LOG(L_INFO, 
00052                             "ERROR: hostport: trailing chars in port number: %s\n",
00053                             tmp+1);
00054                              /* report error? */
00055                 }
00056         }
00057 
00058         return host->s;
00059 }
00060 
00061 #endif