You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
/*******************************************************************************
|
|
|
|
|
* input_vlan.h: vlan input method
|
|
|
|
|
* (c)1999 VideoLAN
|
|
|
|
|
*******************************************************************************
|
|
|
|
|
* ??
|
|
|
|
|
*******************************************************************************
|
|
|
|
|
* Required headers:
|
|
|
|
|
* <netinet/in.h>
|
|
|
|
|
* "vlc_thread.h"
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
|
* Prototypes
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
int input_VlanCreate ( void );
|
|
|
|
|
void input_VlanDestroy ( void );
|
|
|
|
|
int input_VlanJoin ( int i_vlan_id );
|
|
|
|
|
void input_VlanLeave ( int i_vlan_id );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|