- 网络 udp
- 多任务 线程
- 多任务 线程、进程
- 网络 tcp
- 飞鸽传书 完善
- 多任务 协程
- 正则表达式
- 网络通信过程、http 协议
- Web 服务器 并发服务器
- WSGI、mini Web 框架
- 装饰器、mini Web 框架 路由
- MySQL 基本使用
- MySQL 查询
- MySQL 与 Python 交互
- mini Web 框架 添加 MySQL 功能
- 其它知识
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
飞鸽传书 发送消息
飞鸽传书-发送消息
import socket
import time
udp_socket = None # 保存udp套接字
feiq_version = 1 # 飞秋的版本
feiq_user_name = "dong-test" # 用户名
feiq_host_name = "ubuntu-64-1604" # 主机名字
broadcast_ip = "255.255.255.255" # 广播ip
feiq_port = 2425 # 飞鸽传书的端口
# 飞秋command
IPMSG_BR_ENTRY = 0x00000001
IPMSG_BR_EXIT = 0x00000002
IPMSG_SENDMSG = 0x00000020 # 表示 发送消息
def create_udp_socket():
"""创建udp套接字"""
global udp_socket
udp_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
# 设置允许广播
udp_socket.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)
def send_broadcast_online_msg():
"""发送上线提醒"""
# online_msg = "1:123456789:itcast-python:localhost:1:飞飞"
online_msg = "%d:%d:%s:%s:%d:%s" % (feiq_version, int(time.time()),
feiq_user_name, feiq_host_name,
IPMSG_BR_ENTRY, feiq_user_name)
dest_addr = (broadcast_ip, feiq_port)
udp_socket.sendto(online_msg.encode("gbk"), dest_addr)
def send_broadcast_offline_msg():
"""发送下线提醒"""
# online_msg = "1:123456789:itcast-python:localhost:2:飞飞"
online_msg = "%d:%d:%s:%s:%d:%s" % (feiq_version, int(time.time()),
feiq_user_name, feiq_host_name,
IPMSG_BR_EXIT, feiq_user_name)
dest_addr = (broadcast_ip, feiq_port)
udp_socket.sendto(online_msg.encode("gbk"), dest_addr)
def send_msg_2_ip():
"""向指定的ip发送飞秋数据"""
dest_ip = input("请输入对方的ip:")
send_data = input("请输入要发送的数据内容:")
# 如果dest_ip和send_data都有内容就发送,否则不发
if dest_ip and send_data:
chat_msg = "%d:%d:%s:%s:%d:%s" % (feiq_version, int(time.time()), feiq_user_name, feiq_host_name,
IPMSG_SENDMSG, send_data)
udp_socket.sendto(chat_msg.encode("gbk"), (dest_ip, feiq_port))
def print_menu():
"""显示飞鸽传书的功能"""
print(" 飞鸽传书v1.0")
print("1:上线广播")
print("2:下线广播")
print("3:向指定ip发送消息")
print("0:退出")
def main():
# 创建套接字
create_udp_socket()
while True:
print_menu()
command_num = input("请输入要进行的操作:")
if command_num == "1":
# 发送上线提醒
send_broadcast_online_msg()
elif command_num == "2":
# 发送下线提醒
send_broadcast_offline_msg()
elif command_num == "3":
# 向指定ip发送消息
send_msg_2_ip()
elif command_num == "0":
send_broadcast_offline_msg()
# 关闭套接字
udp_socket.close()
exit()
if __name__ == "__main__":
main()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论