컬 상세 출력에서 ​​"서버 ******가 블랙리스트에 포함되지 않았습니다"는 무엇을 의미합니까?

컬 상세 출력에서 ​​"서버 ******가 블랙리스트에 포함되지 않았습니다"는 무엇을 의미합니까?

서버가 블랙리스트에 등록되어야 하는 이유는 무엇입니까?

컬이나 다른 프로그램으로?

서버가 어떻게 블랙리스트에 올 수 있나요?

서버 또는 프로그램에 따라 달라지나요?

블랙리스트에 추가된 IP 주소입니까, 아니면 http 답변에 있는 서버 이름입니까?

추신: 관련이 있는지는 모르겠지만 Linux/Ubuntu에서 실행 중입니다.

전체 출력은 다음과 같습니다(localhost에서 토네이도 테스트).

> * Rebuilt URL to: localhost:8888/
* Hostname was NOT found in DNS cache
*   Trying 127.0.0.1...
* Connected to localhost (127.0.0.1) port 8888 (#0)
> GET / HTTP/1.1
> User-Agent: curl/7.35.0
> Host: localhost:8888
> Accept: */*
> 
< HTTP/1.1 200 OK
< Date: Fri, 16 May 2014 16:35:40 GMT
< Content-Length: 12
< Etag: "e02aa1b106d5c7c6a98def2b13005d5b84fd8dc8"
< Content-Type: text/html; charset=UTF-8
* Server TornadoServer/3.2 is not blacklisted
< Server: TornadoServer/3.2
< 
* Connection #0 to host localhost left intact
Hello, world

답변1

에서 보낸 내부 메시지입니다 curl.

보다:https://github.com/bagder/curl/blob/master/lib/pipeline.c

curl파이프라이닝과 관련된 기능 의 일부인 것 같습니다 .

bool Curl_pipeline_server_blacklisted(struct SessionHandle *handle,
                                      char *server_name)
{
...
    infof(handle, "Server %s is not blacklisted\n", server_name);

관련 정보