]> git.sesse.net Git - vlc/blobdiff - include/announce.h
ignore CR characters wherever they might be.
[vlc] / include / announce.h
index df02048ff581953b01f392cd6c364591c4f84070..81f91c96d43c18a6d09a48a087fbcea1573591b0 100644 (file)
@@ -2,7 +2,7 @@
  * announce.h : Session announcement
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: announce.h,v 1.4 2003/06/23 11:41:26 zorglub Exp $
+ * $Id: announce.h,v 1.7 2003/07/17 14:10:08 sam Exp $
  *
  * Authors: ClĂ©ment Stenac <zorglub@via.ecp.fr>
  *
@@ -51,10 +51,8 @@ struct sap_session_t
         char psz_name[1024];
         char psz_port[8];
         module_t p_network;
-        unsigned int socket;
-        unsigned int sendnow;
-        struct sockaddr_in addr;
-        struct sockaddr_in6 addr6;
+        unsigned int i_socket;
+        unsigned int i_calls;
         int i_ip_version;
 };
 
@@ -63,6 +61,6 @@ struct sap_session_t
 /*****************************************************************************
  * Prototypes
  *****************************************************************************/
-VLC_EXPORT( sap_session_t *,            sout_SAPNew,         ( sout_instance_t *,char * , char * , char * ,int , char *) );
+VLC_EXPORT( sap_session_t *,            sout_SAPNew,         ( sout_instance_t *,char * , char * , int , char *) );
 VLC_EXPORT( void,            sout_SAPSend,        ( sout_instance_t *,sap_session_t *) );
 VLC_EXPORT( void,            sout_SAPDelete,      ( sout_instance_t *,sap_session_t * ) );