~vanvugt/+junk/mediatomb

« back to all changes in this revision

Viewing changes to tombupnp/upnp/src/soap/soap_device.c

  • Committer: Bazaar Package Importer
  • Author(s): Andres Mejia
  • Date: 2008-03-02 13:09:16 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080302130916-zlljdze3kt7vuq4b
Tags: 0.11.0-1
* New upstream release.
* Include message about which inotify headers will be used when enabling
  inotify runtime support.
* Fixed error with use of INTERFACE in init script. Also removed use of -m
  option.
* Including new config.xml options.
* Added more build dependencies for new upstream release.
* Removed build dependency of libid3-dev, taglib is now preferred.
* mediatomb.xpm and manpage.xml is now included in orig tarball.
* inotify patch is not needed anymore.
* md5 patch has been committed upstream and is no longer needed. Also removed
  README.Debian.
* TwinHelix PNG fix is now used. Removed from TODO.
* Adding dependency of iceweasel for mediatomb package.
* Updated copyright file.
* Updated watch file.
* Updated rules file for proper configure options.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
    
33
33
    TombUPnP - a library for developing UPnP applications.
34
34
    
35
 
    Copyright (C) 2006-2007 Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>
 
35
    Copyright (C) 2006-2008 Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>
36
36
    
37
37
    This library is free software; you can redistribute it and/or
38
38
    modify it under the terms of the GNU Lesser General Public
46
46
    You should have received a copy of the GNU Lesser General Public
47
47
    License along with this library; if not, write to the Free Software
48
48
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 
49
    
 
50
    $Id: soap_device.c 1698 2008-02-23 20:48:30Z lww $
49
51
*/
50
52
 
51
53
#include "config.h"
261
263
    }
262
264
    // send err msg
263
265
    http_SendMessage( info, &timeout_secs, "b",
264
 
                      headers.buf, headers.length );
 
266
                      headers.buf, (size_t)headers.length );
265
267
 
266
268
    membuffer_destroy( &headers );
267
269
}
325
327
    }
326
328
    // send msg
327
329
    http_SendMessage( info, &timeout_secs, "b",
328
 
                      response.buf, response.length );
 
330
                      response.buf, (size_t)response.length );
329
331
 
330
332
    membuffer_destroy( &response );
331
333
}
745
747
    }
746
748
    // send whole msg
747
749
    ret_code = http_SendMessage( info, &timeout_secs, "bbbb",
748
 
                                 headers.buf, headers.length,
 
750
                                 headers.buf, (size_t)headers.length,
749
751
                                 start_body, strlen( start_body ),
750
752
                                 xml_response, strlen( xml_response ),
751
753
                                 end_body, strlen( end_body ) );