qiuri2008

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 112 下一页

2018年7月10日

摘要: 不同厂家的NB/4G/2G,配置PPP模式略有差异,回调配置在如下路径: “synergy\ssp_supplemental\src\framework\sf_cellular_cat3\sf_cellular_cat3.c” 其目的是不在调用SSP框架下的SF_CELLULAR_COMMON_Op 阅读全文
posted @ 2018-07-10 15:05 江召伟 阅读(271) 评论(0) 推荐(0) 编辑

2018年7月7日

摘要: 1、类型判断 2、指定编码格式 3、无格式字节流 bytes 不可变字节类型 byrearray 可变字节数组 4、I/O映射 5、文件->内存映射(切片方式修改内存) 6、读写压缩文件 7、串行化 迭代式pickle:连续dump/load db方式: 二进制串行化 8、lambda 9、迭代器、 阅读全文
posted @ 2018-07-07 21:59 江召伟 阅读(1131) 评论(0) 推荐(0) 编辑

摘要: #!/usr/bin/python #_*_ coding:utf-8 _*_ import MySQLdb import time import threading import random from email.MIMEText import MIMEText from email.MIMEMultipart import MIMEMultipart from email.MIMEB... 阅读全文
posted @ 2018-07-07 21:29 江召伟 阅读(730) 评论(0) 推荐(0) 编辑

摘要: #!/usr/bin/python #-*- coding:utf-8 –*- import os import sys import re import shutil import xlrd import xlwt from xlutils.copy import copy ''' 提取相关RELEASE信息,追加“SW Release Note.xls” 运行命令 ./gen_rel... 阅读全文
posted @ 2018-07-07 21:23 江召伟 阅读(184) 评论(0) 推荐(0) 编辑

摘要: #include #include #include #ifndef DWORD #define DWORD unsigned int #endif #ifndef BYTE #define BYTE unsigned char #endif #ifndef bool #define bool unsigned int #endif #define FLASH... 阅读全文
posted @ 2018-07-07 21:20 江召伟 阅读(417) 评论(0) 推荐(0) 编辑

摘要: #!/usr/bin/python #coding:UTF-8 import sys import re import getopt import md5 import os import subprocess import shutil import xlrd import xlwt from xlutils.copy import copy #from subprocess imp... 阅读全文
posted @ 2018-07-07 21:18 江召伟 阅读(220) 评论(0) 推荐(0) 编辑

摘要: #!/usr/bin/python #_*_ coding:utf-8 _*_ import time from email.MIMEText import MIMEText from email.MIMEMultipart import MIMEMultipart from email.MIMEBase import MIMEBase from email import Utils, E... 阅读全文
posted @ 2018-07-07 21:01 江召伟 阅读(401) 评论(0) 推荐(0) 编辑

摘要: #!/usr/bin/python #-*- coding:utf-8 –*- import os import sys import re import shutil import xlrd import xlwt import getopt import math from xlutils.copy import copy ''' 脚本使用: 设置strUiPorject... 阅读全文
posted @ 2018-07-07 20:55 江召伟 阅读(264) 评论(0) 推荐(0) 编辑

2018年7月6日

摘要: 为什么要分片 不同的链路类型能够支持的最大传输单元值(MTU: Maxitum Transmission Unit)主要是由相关RFC文档规定的,常见的以太网链路的MTU值为1500,如果需要转发的IP报文超出其转发接口的MTU值,则在转发该报文之前,需要将其分片,分为多个适合于该链路类型传输的报文 阅读全文
posted @ 2018-07-06 19:29 江召伟 阅读(6546) 评论(0) 推荐(1) 编辑

摘要: 1、概述 首先要看TCP/IP协议,涉及到四层:链路层,网络层,传输层,应用层。 其中以太网(Ethernet)的数据帧在链路层 IP包在网络层 TCP或UDP包在传输层 TCP或UDP中的数据(Data)在应用层 它们的关系是 数据帧{IP包{TCP或UDP包{Data}}} 不同的协议层对数据包 阅读全文
posted @ 2018-07-06 15:31 江召伟 阅读(34217) 评论(1) 推荐(6) 编辑

上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 112 下一页