선언되지 않은 식별자입니다.
·
기타
CInternetSession session(_T("session")); session.SetOption(INTERNET_OPTION_CONNECT_TIMEOUT, 3000); 위와 같이 코드를 작성하였을 때 분명 session을 선언, 정의 하였지만 빌드 시, error C2065: 'CInternetSession': 선언되지 않은 식별자입니다. error C2146: 구문 오류: ';'이(가) 'session' 식별자 앞에 없습니다. error C3861: 'session': 식별자를 찾을 수 없습니다. 오류를 던져버린다. 이유는 파일 상단에서 "pch.h" 보다 "afxinet.h" 헤더를 먼저 include 하였기 때문. 둘의 순서를 바꿔주면 해결된다. // #include "afxinet.h" ..
[Live555] Live555 build (Visual Studio 2017, Windows10)
·
기타
http://www.live555.com/ LIVE555.COM The UDP Multicast Tunneling Protocol A simple, low-overhead protocol for tunneling UDP multicast using UDP unicast (Here is an example of a 3rd-party service that uses UMTP.) Many Internet users currently cannot participate in wide-area IP multicast sessio www.live555.com 1. 위 링크 에서 LIVE555 Streaming Media 탭 선택 2. Source code -> here -> live555-latest.tar.gz(최..
[GitLab] Client에서 접속 시 ERR_CONNECTION_TIMED_OUT
·
기타
우분투 서버에서는 GibLab local 주소로 접속이 잘 되었는데, 클라(windows)쪽에서 주소로 접근하니까 ERR_CONNECTION_TIMED_OUT 가 뜨면서 접속이 안되는 현상.... Ubuntu에서 다음 커맨드 실행하니까 그 때부터 접속 가능... sudo iptables -F
[Samba] Ubuntu 20에서 공유 폴더 만들기
·
기타
Ubuntu 설정 1. 공유할 폴더 생성 sudo mkdir /server-root sudo chmod 777 /server-root 2. 삼바 install apt install samba sudo service smbd status 3. /etc/samba/smb.conf 파일 열고 가장 아래 부분에 추가 [server-root] path = /server-root public = yes writable = yes valid users = newman 4. 설정 후 재시작 sudo service smbd restart 5. .conf 파일에서 설정한 유저 생성 useradd newman sudo smbpasswd -a newman # 비밀번호 설정 Windows 설정 1. Ubuntu ip 주소로 접근
[GitLab] Client에서 Project Clone하기
·
기타
1. SSH Key 생성 - Git Bash에서 ssh-keygen 커맨드 입력. - C:\Users\사용자\ 경로에 .ssh 폴더 생성 확인 2. GitLab에 SSH Key 등록 - 우측 상단에 프로필->Edit profile - C:\Users\사용자\.ssh\id_rsa.pub 파일의 내용 Key에 입력. - Add Key 3. SourceTree에 SSH Key 등록 - SourceTree 도구->옵션 - SSH 키 : .ssh에 생성한 id_rsa 참조 - SSH 클라이언트 : OpenSSH 4. Project Clone - GitLab에서 SSH 복사. - SourTree에서 Project Clone.
[GitLab] 리눅스, 우분투 GitLab 설치, GitLab 서버 구축
·
기타
1. Git 설치 - sudo apt-get install git - sudo apt install git 2. GitLab 설치 https://about.gitlab.com/install/ Download and install GitLab Learn about the various GitLab installation packages and downloads for Ubuntu, Debian, Docker, Google Cloud, and many more. about.gitlab.com 위 링크에서 우분투 버전 체크하고 따라 설치하면 된다. - 필요한 패키지 설치 - GitLab package repository - gitlab-ee (Entrerprise Edition), gitlab-ce (Comm..
woongs_93
'기타' 카테고리의 글 목록 (3 Page)