Parcourir la source

fixed port in https

mip-it il y a 10 ans
Parent
commit
29b4009c5d
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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