소스 검색

fixed port in https

mip-it 11 년 전
부모
커밋
29b4009c5d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/de/tudarmstadt/informatik/hostage/protocol/HTTPS.java

+ 1 - 1
src/de/tudarmstadt/informatik/hostage/protocol/HTTPS.java

@@ -18,7 +18,7 @@ public class HTTPS implements Protocol<String> {
 
 	@Override
 	public int getPort() {
-		return 80;
+		return 443;
 	}
 
 	@Override