SSHSecureFileTransferClient是连接Linux的主要客户端工具之一,其特点就是传送文件方便.虽然SSHSecureFileTransferClient显示中文时有时会乱码,但仍然挡人们对它的喜爱http://jingyan.baidu.com/article/19192ad815fd0ee53e570719.html
分类:
其他好文 时间:
2015-11-26 01:37:09
阅读次数:
164
#define_CRT_SECURE_NO_WARNINGS
#definem100
typedefcharDataType;
typedefstructNode/*二叉链表的结构体*/
{
DataTypedata;
structNode*LChild;
structNode*RChild;
}BiTNode,*BiTree;
#defineQueue_Size100
typedefBiTreeQueueElement;
typedefstruct//定义顺序队列..
分类:
其他好文 时间:
2015-11-25 01:14:35
阅读次数:
188
scp是secure copy的简写,用于在Linux下进行远程拷贝文件的命令,和它类似的命令有cp,不过cp只是在本机进行拷贝不能跨服务器,而且scp传输是加密的。可能会稍微影响一下速度。当你服务器硬盘变为只读 read only system时,用scp可以帮你把文件移出来。另外,scp还非常不...
分类:
系统相关 时间:
2015-11-24 12:45:39
阅读次数:
246
1、F1进入BIOS,Security → Secure Boot ,设置为:Disabled2、Startup → UEFI/Legacy Boot ,设置为:Both(原选项为:UEFI Only)3、在新显示的 UEFI/Legacy Boot Priority 设置为:UEFI First4...
481#Secure(SSL/TLS)connections
482#Includeetc//extra/httpd-ssl.conf
483#
484#Note:Thefollowingmustmustbepresenttosupport
485#startingwithoutSSLonplatformswithno/dev/randomequivalent
486#butastaticallycompiled-inmod_ssl.
487#
488<IfModulessl_module>
48..
分类:
其他好文 时间:
2015-11-24 06:32:02
阅读次数:
120
遇到的错误The resource could not be loaded because the App Transport Security policy requires the use of a secure connection.少年莫慌,这是升级的ios9的https问题,解决起来很简单,关闭他,咱还是用http解决1:在Info.plist中添加NSAppTransportSecuri...
分类:
移动开发 时间:
2015-11-21 14:31:53
阅读次数:
194
#define_CRT_SECURE_NO_WARNINGS1
#include<stdio.h>
#include<assert.h>
#include<stdlib.h>
char*my_strstr(constchar*dst,constchar*src)
{
assert(dst);
assert(src);
char*p=dst;
char*s1=p;
char*s2=src;
while(*s1)
{
s1=p;
s2=src;
while((*s1!=‘\0..
分类:
编程语言 时间:
2015-11-20 00:20:26
阅读次数:
273
#define_CRT_SECURE_NO_WARNINGS1
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#include<windows.h>
intfind(intarr[],introws,intcolumns,intnum)
{
intfind=0;
if(arr!=NULL&&rows>0&&columns>0)
{
introw=0;
in..
分类:
编程语言 时间:
2015-11-20 00:19:36
阅读次数:
257
题目:编写冒泡排序,排序一个整形数组。题目分析:使用冒泡排序方式,对于一个n个元素的数组,至少要比较n-1个轮回,每个轮回将较大的数置到后面,最少比较n-2次,一直进行循环操作,最终能够排序一个整形数组。下面是具体的程序:#define_CRT_SECURE_NO_WARNINGS1
#include&l..
分类:
编程语言 时间:
2015-11-19 07:19:50
阅读次数:
182
#define_CRT_SECURE_NO_WARNINGS1
#include<stdio.h>
#include<stdlib.h>
#include<assert.h>
void*my_memmove(void*p1,void*p2,size_tcount)
{
assert(p1);
assert(p2);
char*dest=(char*)p1;
char*src=(char*)p2;
dest=dest+16;
src=src+8;
if((src<de..
分类:
编程语言 时间:
2015-11-19 07:15:14
阅读次数:
201