X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fplugins%2Fhttp_static%2Fstatic_server.c;h=a4c62fcda078c75ba3d2464aceb85a74dba97212;hb=55fbf55c17cc88884aa20e7070bc813000a3b193;hp=cd36be7ccb60b3139a49b41e47006eb291d20114;hpb=9067f3332ed0ddc143105b003e614f3f90719916;p=vpp.git diff --git a/src/plugins/http_static/static_server.c b/src/plugins/http_static/static_server.c index cd36be7ccb6..a4c62fcda07 100644 --- a/src/plugins/http_static/static_server.c +++ b/src/plugins/http_static/static_server.c @@ -41,7 +41,7 @@ hss_session_alloc (u32 thread_index) return hs; } -static hss_session_t * +__clib_export hss_session_t * hss_session_get (u32 thread_index, u32 hs_index) { hss_main_t *hsm = &hss_main; @@ -261,7 +261,6 @@ try_index_file (hss_main_t *hsm, hss_session_t *hs, u8 *path) redirect = format (0, - "HTTP/1.1 301 Moved Permanently\r\n" "Location: http%s://%U%s%s\r\n\r\n", proto == TRANSPORT_PROTO_TLS ? "s" : "", format_ip46_address, &endpt.ip, endpt.is_ip4, print_port ? port_str : (u8 *) "", path); @@ -275,7 +274,7 @@ try_index_file (hss_main_t *hsm, hss_session_t *hs, u8 *path) hs->data_len = vec_len (redirect); hs->free_data = 1; - return HTTP_STATUS_OK; + return HTTP_STATUS_MOVED; } static int