├── README.md ├── p2pClient ├── .idea │ ├── misc.xml │ ├── modules.xml │ ├── p2pClient.iml │ ├── vcs.xml │ └── workspace.xml ├── PeerManager │ ├── Chatting.py │ ├── LoginAndSignUp.py │ ├── PeerInfo.py │ ├── ServerConnection.py │ ├── ServerInfo.py │ ├── UserInfo.py │ ├── WindowManager.py │ └── __pycache__ │ │ ├── Chatting.cpython-36.pyc │ │ ├── LoginAndSignUp.cpython-36.pyc │ │ ├── PeerInfo.cpython-36.pyc │ │ ├── ServerConnection.cpython-36.pyc │ │ ├── ServerInfo.cpython-36.pyc │ │ ├── UserInfo.cpython-36.pyc │ │ └── WindowManager.cpython-36.pyc ├── client.py └── image │ └── welcome.gif ├── p2pServer ├── .idea │ ├── misc.xml │ ├── modules.xml │ ├── p2pServer.iml │ └── workspace.xml ├── server.py └── user_information │ └── usr_info.pickle └── screenshot ├── 发起聊天1.gif ├── 同时与两人聊天.gif ├── 新的聊天提示框.gif ├── 正常聊天1.gif ├── 注册.gif ├── 注册成功.gif ├── 用户已注册.gif ├── 登录.gif ├── 登录失败.gif ├── 登录成功.gif ├── 登录成功1.gif └── 聊天界面2.gif /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/README.md -------------------------------------------------------------------------------- /p2pClient/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/.idea/misc.xml -------------------------------------------------------------------------------- /p2pClient/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/.idea/modules.xml -------------------------------------------------------------------------------- /p2pClient/.idea/p2pClient.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/.idea/p2pClient.iml -------------------------------------------------------------------------------- /p2pClient/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/.idea/vcs.xml -------------------------------------------------------------------------------- /p2pClient/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/.idea/workspace.xml -------------------------------------------------------------------------------- /p2pClient/PeerManager/Chatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/PeerManager/Chatting.py -------------------------------------------------------------------------------- /p2pClient/PeerManager/LoginAndSignUp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/PeerManager/LoginAndSignUp.py -------------------------------------------------------------------------------- /p2pClient/PeerManager/PeerInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/PeerManager/PeerInfo.py -------------------------------------------------------------------------------- /p2pClient/PeerManager/ServerConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/PeerManager/ServerConnection.py -------------------------------------------------------------------------------- /p2pClient/PeerManager/ServerInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/PeerManager/ServerInfo.py -------------------------------------------------------------------------------- /p2pClient/PeerManager/UserInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/PeerManager/UserInfo.py -------------------------------------------------------------------------------- /p2pClient/PeerManager/WindowManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/PeerManager/WindowManager.py -------------------------------------------------------------------------------- /p2pClient/PeerManager/__pycache__/Chatting.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/PeerManager/__pycache__/Chatting.cpython-36.pyc -------------------------------------------------------------------------------- /p2pClient/PeerManager/__pycache__/LoginAndSignUp.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/PeerManager/__pycache__/LoginAndSignUp.cpython-36.pyc -------------------------------------------------------------------------------- /p2pClient/PeerManager/__pycache__/PeerInfo.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/PeerManager/__pycache__/PeerInfo.cpython-36.pyc -------------------------------------------------------------------------------- /p2pClient/PeerManager/__pycache__/ServerConnection.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/PeerManager/__pycache__/ServerConnection.cpython-36.pyc -------------------------------------------------------------------------------- /p2pClient/PeerManager/__pycache__/ServerInfo.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/PeerManager/__pycache__/ServerInfo.cpython-36.pyc -------------------------------------------------------------------------------- /p2pClient/PeerManager/__pycache__/UserInfo.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/PeerManager/__pycache__/UserInfo.cpython-36.pyc -------------------------------------------------------------------------------- /p2pClient/PeerManager/__pycache__/WindowManager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/PeerManager/__pycache__/WindowManager.cpython-36.pyc -------------------------------------------------------------------------------- /p2pClient/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/client.py -------------------------------------------------------------------------------- /p2pClient/image/welcome.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pClient/image/welcome.gif -------------------------------------------------------------------------------- /p2pServer/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pServer/.idea/misc.xml -------------------------------------------------------------------------------- /p2pServer/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pServer/.idea/modules.xml -------------------------------------------------------------------------------- /p2pServer/.idea/p2pServer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pServer/.idea/p2pServer.iml -------------------------------------------------------------------------------- /p2pServer/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pServer/.idea/workspace.xml -------------------------------------------------------------------------------- /p2pServer/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pServer/server.py -------------------------------------------------------------------------------- /p2pServer/user_information/usr_info.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/p2pServer/user_information/usr_info.pickle -------------------------------------------------------------------------------- /screenshot/发起聊天1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/screenshot/发起聊天1.gif -------------------------------------------------------------------------------- /screenshot/同时与两人聊天.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/screenshot/同时与两人聊天.gif -------------------------------------------------------------------------------- /screenshot/新的聊天提示框.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/screenshot/新的聊天提示框.gif -------------------------------------------------------------------------------- /screenshot/正常聊天1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/screenshot/正常聊天1.gif -------------------------------------------------------------------------------- /screenshot/注册.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/screenshot/注册.gif -------------------------------------------------------------------------------- /screenshot/注册成功.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/screenshot/注册成功.gif -------------------------------------------------------------------------------- /screenshot/用户已注册.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/screenshot/用户已注册.gif -------------------------------------------------------------------------------- /screenshot/登录.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/screenshot/登录.gif -------------------------------------------------------------------------------- /screenshot/登录失败.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/screenshot/登录失败.gif -------------------------------------------------------------------------------- /screenshot/登录成功.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/screenshot/登录成功.gif -------------------------------------------------------------------------------- /screenshot/登录成功1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/screenshot/登录成功1.gif -------------------------------------------------------------------------------- /screenshot/聊天界面2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingL/P2P_Chatting/HEAD/screenshot/聊天界面2.gif --------------------------------------------------------------------------------