lm_proxy.c
changeset 4 5770be2d5f3f
parent 0 84fdfb0344c9
child 6 90073cbb535d
equal deleted inserted replaced
3:4fd19a188509 4:5770be2d5f3f
    12 /// Create object, set it's parameters, and then attach to connection
    12 /// Create object, set it's parameters, and then attach to connection
    13 /// with 'proxy' method.
    13 /// with 'proxy' method.
    14 
    14 
    15 /// proxy type
    15 /// proxy type
    16 /// Stirng, specifying proxy-server type. The only type supported for now is http.
    16 /// Stirng, specifying proxy-server type. The only type supported for now is http.
    17 /// V: http, none
    17 /// G:
    18 const string2enum_t llm_proxy_type[] = {
    18 const string2enum_t llm_proxy_type[] = {
    19 	{ "http", LM_PROXY_TYPE_HTTP },
    19 	{ "http", LM_PROXY_TYPE_HTTP },
    20 	{ "none", LM_PROXY_TYPE_NONE },
    20 	{ "none", LM_PROXY_TYPE_NONE },
    21 	{ NULL,   LM_PROXY_TYPE_HTTP },
    21 	{ NULL,   LM_PROXY_TYPE_HTTP },
    22 };
    22 };