#include <UDP.h>
Inheritance diagram for TAO_AV_UDP_Factory:
Public Member Functions | |
TAO_AV_UDP_Factory (void) | |
Initialization hook. | |
virtual | ~TAO_AV_UDP_Factory (void) |
virtual int | init (int argc, char *argv[]) |
virtual int | match_protocol (const char *protocol_string) |
virtual TAO_AV_Acceptor * | make_acceptor (void) |
virtual TAO_AV_Connector * | make_connector (void) |
|
Initialization hook.
Definition at line 906 of file UDP.cpp.
00907 { 00908 } |
|
Definition at line 910 of file UDP.cpp.
00911 { 00912 } |
|
Reimplemented from TAO_AV_Transport_Factory. Definition at line 947 of file UDP.cpp.
00949 {
00950 return 0;
00951 }
|
|
Reimplemented from TAO_AV_Transport_Factory. Definition at line 925 of file UDP.cpp. References ACE_DEBUG, ACE_NEW_RETURN, LM_DEBUG, and TAO_debug_level.
00926 { 00927 if (TAO_debug_level > 0) ACE_DEBUG ((LM_DEBUG,"TAO_AV_UDP_Factory::make_acceptor\n")); 00928 TAO_AV_Acceptor *acceptor = 0; 00929 ACE_NEW_RETURN (acceptor, 00930 TAO_AV_UDP_Acceptor, 00931 0); 00932 return acceptor; 00933 } |
|
Reimplemented from TAO_AV_Transport_Factory. Definition at line 936 of file UDP.cpp. References ACE_DEBUG, ACE_NEW_RETURN, LM_DEBUG, and TAO_debug_level.
00937 { 00938 if (TAO_debug_level > 0) ACE_DEBUG ((LM_DEBUG,"TAO_AV_UDP_Factory::make_connector\n")); 00939 TAO_AV_Connector *connector = 0; 00940 ACE_NEW_RETURN (connector, 00941 TAO_AV_UDP_Connector, 00942 0); 00943 return connector; 00944 } |
|
Reimplemented from TAO_AV_Transport_Factory. Definition at line 915 of file UDP.cpp. References ACE_OS::strcasecmp().
00916 { 00917 if (ACE_OS::strcasecmp (protocol_string,"UDP") == 0) 00918 return 1; 00919 if (ACE_OS::strcasecmp (protocol_string,"RTP/UDP") == 0) 00920 return 1; 00921 return 0; 00922 } |