Welcome![Sign In][Sign Up]
Location:
Search - x-ftp

Search list

[Streaming Mpeg4komssys-0.3.6.tar

Description: The KOM(S) Streaming System provides a server, a client, and a proxy cache for audio/video streaming. The first and foremost encoding format that we use is MPEG-1 System. The primary platforms is Linux. It does not handle data in pull mode (File, HTTP and FTP) but uses RTSP/RTP (and Files). It uses RTSP as control protocol to communicate with possible streaming servers. The video data is transported via RTP. -The KOM (S) Streaming System provides a ser ver, a client, and a proxy cache for audio / video streaming. Th e first and foremost encoding format that we use is MPEG-1 System. The primary platforms is Linu x. It does not handle data in pull mode (File, HTTP and FTP), but uses RTSP / RTP (and Files). It u ses RTSP as control protocol to communicate wit h possible streaming servers. The video data is transported via RTP.
Platform: | Size: 1266786 | Author: 向军 | Hits:

[TCP/IP stackzebedee-2.4.1.tar

Description: Zebedee is a simple program to establish an encrypted, compressed \"tunnel\" for TCP/IP or UDP traffic between two systems. This allows data from, for example, telnet, ftp and X sessions to be protected from snooping. You can also use compression, either with or without data encryption, to gain performance over low-bandwidth networks. -Zebedee is a simple program to establish an encrypted, compressed "tunnel" for TCP / IP or UDP traffic b etween two systems. This allows data from, for example, telnet, ftp and X sessions to be protected from snooping . You can also use compression, either with or without data encryption. to gain performance over low-bandwidth networ ks.
Platform: | Size: 165130 | Author: robo | Hits:

[Other resource2.6_kernel_on_HHARM2410_HHARM9200

Description: HHARM2410: 1. 从ftp://ftp.arm.linux.org.uk上下载linux内核,由于项目原因,先后跑了2.6.11,2.6.13和2.6.15,试了一下ftp.kernel.org上下载的2.6.16,没跑起来,打住。 2. 编辑linux-2.6.15/Makefile, ARCH ?= $(SUBARCH) CROSS_COMPILE?= 改为 ARCH ?= arm CROSS_COMPILE?= arm-unknown-linux-gnu- 我用的编译器是4.0.1版本的,一般的3.x的应该都没问题
Platform: | Size: 68546 | Author: fun | Hits:

[Ftp ServerTinyFtpServer

Description: 一个基于控制台应用的TinyFtpServer,tinyle发现网上有好多FTP Client客户端的源码,而没发现Server的,就心血来潮写了一个供大家参考,该Ftp Server只实现了有限的几个常用命令,进一步的应用要让大家去扩展,呵呵,记得扩展后以后不吝mail给我一份哦。该Ftp Server在Win自带FTP客户,Cute-Ftp 4.x下测试通过。include file:ftpserver.cpp,ftpserver.dspftpserver.dswoverlap.cpp,stdafx.hstdafx.c-a console-based applications TinyFtpServer, tinyle to find a lot of FTP Client client source code, but we did not find Server, it was an impulse for your reference, the Ftp Server only achieved a limited number of commands, the further application to let you expand, huh, The expanded recall hearing after a mail to me, oh. The Ftp Server Win own FTP client, Cute - Ftp 4.x under test. Include file : ftpserver.cpp, ftpserver.dspftpserver.dswoverlap.cpp, stdafx.hstdafx.c
Platform: | Size: 13897 | Author: 乐浩军 | Hits:

[OtherC++程序设计语言实验二

Description: 实验二:C++编程入门 一、实验内容 1. 使用构造函数、析构函数。 2. 使用对象数组。 3. 学习动态创建对象。 4. 学习全局对象、静态对象、局部对象。 5. 运算符重载。 二、实验题目 1,定义一个学生类,要求存储学号,姓名, 年龄,性别,班号等信息,从键盘输入10个学生信息,存储在一个对象数组中,并将所有学生信息打印出来。 要求:1,学号按照1,2,3....排列,并通过对象构造函数输入。 2,学生类提供一个打印函数,负责打印学生信息 3,要求有一个析构函数,在对象销毁时打印“学生X信息销毁”,这里X表示学号。 4,输出打印时要求使用指向对象的指针。 2,定义一个学生类,要求存储学号,姓名, 年龄,性别,班号等信息,并作为私有成员变量存储,分别实现GetInfo(...), PrintInfo, SetInfo(...) 三个共有成员函数,用于进行信息读取、信息打印、信息修改。 分别从键盘输入10个学生信息,存储在一个动态创建的对象数组中(使用new操作符创建),要求从键盘输入学号进行学生对象的查找,并将该学生信息打印出来。 要求:1,学号按照输入顺序1,2,3....排列,并通过对象构造函数输入。 2,使用this指针 3,要求提供构造函数和析构函数,前者在对象创建时打印“学生X信息创建”,后者在对象销毁时打印“学生X信息销毁”,这里X表示学号。 4,查找对象时使用指向对象的指针。 3,用上例定义的学生类分别创建一个全局对象,一个函数中的静态对象、相同函数中的若干局部对象。在构造函数中增加对象存储类别的信息(如:“全局对象”、“静态对象”、“局部对象”),在析构函数中也增加相同信息。运行该程序,观察构造函数和析构函数调用时机和相对顺序。 4,设计并实现一个复数类,提供对复数+、-、++(实部自增)、--(实部自减)运算符的重载以获得相应功能,并重载<<和>>操作符,以用于对复数的打印。 三、实验要求  将程序源代码压缩后提交至学院FTP上对应实验和班级的目录中。  作业命名方式为:“学号姓名.rar”。  作业提交时间:下次实验课前提交。
Platform: | Size: 11780 | Author: zhuchao0731@163.com | Hits:

[OtherC++程序设计语言实验三

Description: 实验三:C++编程入门 一、实验内容 1. 类模版。 2. 运算符重载。 3. 友元。 4. 继承。 二、实验题目 1, 设计一个类SavingsAccount,定义一个静态数据成员记录存款的年利率(rate),该类的每个成员都包含一个私有的数据成员balance,表示该成员当前的存款数额。提供一个成员函数CalMonthlyInterest(),用以计算月利息(用balance乘以rate再除以12),并将这个月利息加入balance中。提供一个静态成员函数ModifyRate(),用以改变静态数据成员rate的值。定义两个不同的SavingsAccount对象saver1和saver2,当前存款数额balance分别为2000.00和3000.00。首先将rate设置为3%,计算每个存款人的月息并打印新的结果,然后将rate设置为4%,再次计算每个存款人的月息并打印新的结果。 2, 设计一个学生类student,包括学生学号、姓名、成绩;设计一个友元函数,比较某两个学生成绩的高低;读入一个文本文件(格式如示例studengt.txt,每行的学号、姓名、成绩之间用四个空格隔开)中所有学生的学号、姓名、成绩,输出最高成绩和最低成绩的学生信息(学号、姓名、成绩)。 3, 阅读下面例子,将题中的Time类声明为Data类的友元类,通过Time类中的display函数引用Data类的私有数据,输出年、月、日和时、分、秒。 #include <iostream> using namespace std; class Date; //对Date类的提前引用声明 class Time //定义Time类 { public: Time(int,int,int); void display(Date &); //display是成员函数,形参是Date类对象的引用 private: int hour; int minute; int sec; }; class Date //声明Date类 { public: Date(int,int,int); friend void Time∷display(Date &); //声明Time中的display函数为友元成员函数 private: int month; int day; int year; }; Time∷Time(int h,int m,int s) //类Time的构造函数 { hour=h; minute=m; sec=s; } void Time∷display(Date &d) //display的作用是输出年、月、日和时、分、秒 { cout<<d.month<<″/″<<d.day<<″/″<<d.year<<endl; //引用Date类对象中的私有数据 cout<<hour<<″:″<<minute<<″:″<<sec<<endl; //引用本类对象中的私有数据 } Date∷Date(int m,int d,int y) //类Date的构造函数 { month=m; day=d; year=y; } int main( ) { Time t1(10,13,56); //定义Time类对象t1 Date d1(12,25,2004); //定义Date类对象d1 t1.display(d1); //调用t1中的display函数,实参是Date类对象d1 return 0; } 4, 将下面程序改为在类模板外定义各成员函数: #include <iostream> using namespace std; template<class numtype> //定义类模板 class Compare { public: Compare(numtype a,numtype b) { x=a;y=b; } numtype max( ) { return (x>y)?x:y; } numtype min( ) { return (x<y)?x:y; } private: numtype x,y; }; int main( ) { Compare<int> cmp1(3,7); //定义对象cmp1,用于两个整数的比较 cout<<cmp1.max( )<<″ is the Maximum of two integer numbers.″<<endl; cout<<cmp1.min( )<<″ is the Minimum of two integer numbers.″<<endl<<endl; Compare<float> cmp2(45.78,93.6); //定义对象cmp2,用于两个浮点数的比较 cout<<cmp2.max( )<<″ is the Maximum of two float numbers.″<<endl; cout<<cmp2.min( )<<″ is the Minimum of two float numbers.″<<endl<<endl; Compare<char> cmp3(′a′,′A′); //定义对象cmp3,用于两个字符的比较 cout<<cmp3.max( )<<″ is the Maximum of two characters.″<<endl; cout<<cmp3.min( )<<″ is the Minimum of two characters.″<<endl; return 0; } 5, 有两个矩阵a和b,均为2行3列,求两个矩阵的和。重载运算符“+”使之用于矩阵相加。如:c=a+b。重载插入运算符“<<”和流提取运算符“>>”,使之能用于该矩阵的输入和输出。 6, 利用类继承分别完成一个学生类、一个大学生类、一个本科生类,本科生类中包括了一个学生作为他的班长。在创建一个本科生对象时赋予他的全部信息,输出该本科生对象的全部信息。 7, 利用c++继承、多态虚函数、构造函数完成以下程序:设计人、老师、学生、大学生、研究生、大四学生等类、其主要属性自己定义,要求包括以下方法: 1) 构造函数,创建对象的主要信息 2) Display,显示每种类对象的主要信息 此外,要求每个类包含一个生日对象,其类型为Birthday类,学生类应该包含一个班主任对象,其类型为老师类。 三、实验要求  将程序源代码压缩后提交至学院FTP上对应实验和班级的目录中。  作业命名方式为:“学号姓名.rar”。  作业提交时间:下次实验课前提交。
Platform: | Size: 1255695 | Author: zhuchao0731@163.com | Hits:

[OtherC++程序设计语言实验四

Description: 实验七:C++编程入门 一、实验内容 1. 理解继承与组合。 2. 学会使用多态特性。 3. 使用文件。 4. 异常处理。 二、实验题目 1. 创建一个class Counted,包含一个int类型的成员变量id和一个static int类型的成员变量count。默认构造函数的开头为“Counted() : id(count ++) {”。要求: a) 构造函数输出id值并且输出“it’s being created”; b) 析构函数也输出id值并且输出“it is being destroyed”; c) 使用new创建一个class Counted的对象,并且用delete销毁它; d) 使用new创建一个class Counted的对象数组,并且用delete[]销毁它; 2. 使用继承的方法,编写一个点类Point和线段类Line。要求:点以(x, y)的形式打印坐标的值;线段以上述形式打印两端点的坐标(x1, y1)、(x2,y2),并设计计算线段长度的内联函数。 3. 创建一个简单的Shape层次:基类称为Shape,派生类分别为Circle、Square和Triangle。在基类中定义一个虚函数draw(),然后再在这些派生类中定义这个函数。在堆中创建Shape对象,并建立一个指向这些Shape对象的指针数组(这样就形成了指针向上类型转换),通过基类指针调用draw(),检验虚函数的行为。 4. 利用c++继承、多态虚函数、构造函数完成以下程序:设计人、老师、学生、大学生、研究生、大四学生等类、其主要属性自己定义,要求包括以下方法: 1) 构造函数,创建对象的主要信息 2) Display,显示每种类对象的主要信息 此外,要求每个类包含一个生日对象,其类型为Birthday类,学生类应该包含一个班主任对象,其类型为老师类。 利用研究生类创建一个数组,来存储一个班级的学生信息,将其写入硬盘文件,再读出来进行显示。读写文件失败时要进行异常处理。 三、实验要求  将程序源代码压缩后提交至学院FTP上对应实验和班级的目录中。  作业命名方式为:“学号姓名.rar”。  作业提交时间:下次实验课前提交。
Platform: | Size: 9677 | Author: zhuchao0731@163.com | Hits:

[Ftp ServerTinyFtpServer

Description: 一个基于控制台应用的TinyFtpServer,tinyle发现网上有好多FTP Client客户端的源码,而没发现Server的,就心血来潮写了一个供大家参考,该Ftp Server只实现了有限的几个常用命令,进一步的应用要让大家去扩展,呵呵,记得扩展后以后不吝mail给我一份哦。该Ftp Server在Win自带FTP客户,Cute-Ftp 4.x下测试通过。include file:ftpserver.cpp,ftpserver.dspftpserver.dswoverlap.cpp,stdafx.hstdafx.c-a console-based applications TinyFtpServer, tinyle to find a lot of FTP Client client source code, but we did not find Server, it was an impulse for your reference, the Ftp Server only achieved a limited number of commands, the further application to let you expand, huh, The expanded recall hearing after a mail to me, oh. The Ftp Server Win own FTP client, Cute- Ftp 4.x under test. Include file : ftpserver.cpp, ftpserver.dspftpserver.dswoverlap.cpp, stdafx.hstdafx.c
Platform: | Size: 13312 | Author: 乐浩军 | Hits:

[Streaming Mpeg4komssys-0.3.6.tar

Description: The KOM(S) Streaming System provides a server, a client, and a proxy cache for audio/video streaming. The first and foremost encoding format that we use is MPEG-1 System. The primary platforms is Linux. It does not handle data in pull mode (File, HTTP and FTP) but uses RTSP/RTP (and Files). It uses RTSP as control protocol to communicate with possible streaming servers. The video data is transported via RTP. -The KOM (S) Streaming System provides a ser ver, a client, and a proxy cache for audio/video streaming. Th e first and foremost encoding format that we use is MPEG-1 System. The primary platforms is Linu x. It does not handle data in pull mode (File, HTTP and FTP), but uses RTSP/RTP (and Files). It u ses RTSP as control protocol to communicate wit h possible streaming servers. The video data is transported via RTP.
Platform: | Size: 1266688 | Author: 向军 | Hits:

[TCP/IP stackzebedee-2.4.1.tar

Description: Zebedee is a simple program to establish an encrypted, compressed "tunnel" for TCP/IP or UDP traffic between two systems. This allows data from, for example, telnet, ftp and X sessions to be protected from snooping. You can also use compression, either with or without data encryption, to gain performance over low-bandwidth networks. -Zebedee is a simple program to establish an encrypted, compressed "tunnel" for TCP/IP or UDP traffic b etween two systems. This allows data from, for example, telnet, ftp and X sessions to be protected from snooping . You can also use compression, either with or without data encryption. to gain performance over low-bandwidth networ ks.
Platform: | Size: 164864 | Author: robo | Hits:

[File Formatfx-3600p

Description: Fx-3600pv计算器是日本CASIO公司的产品,它除了具备函数型计算器的全部功能之外,还具备如下特殊功能: 1、二进制和八进制字组显示; 2、二进制、八进制、十进制和十六进制的转换和加、减、乘、除运算。 3、进行f(x)函数的输入与积分的计算; 4、进行标准差和回归计算。 每一台Fx-3600pv计算器都具备一本说明书,该计算器各部键的功能以及操作方法,只要认真按照说明书各章节学习,很快就能掌握和运用。现将我在生产实践中应用的部分计算程序介绍给测绘界的同行以便共同探讨。-Fx- 3600pv calculators Japan CASIO company's products, In addition to its function with the full-function calculator, also has the following unique features : 1. binary and octal Cross display; 2, binary, octal, decimal and hexadecimal conversion and processing to reduce, x, in addition to operations. 3, f (x) function of the input and integration of computing; 4, the standard deviation and regression. Each Taiwan Fx- 3600pv calculators have had a brochure, The calculator function key ministries, as well as the methods of operation, in line with the statement as long as the chapters of the study, soon we will be able to understand and use. We now in production practice application of the calculation procedures introduced to the mapping industry counterparts to jointly explore.
Platform: | Size: 8192 | Author: jadehouse | Hits:

[Other2.6_kernel_on_HHARM2410_HHARM9200

Description: HHARM2410: 1. 从ftp://ftp.arm.linux.org.uk上下载linux内核,由于项目原因,先后跑了2.6.11,2.6.13和2.6.15,试了一下ftp.kernel.org上下载的2.6.16,没跑起来,打住。 2. 编辑linux-2.6.15/Makefile, ARCH ?= $(SUBARCH) CROSS_COMPILE?= 改为 ARCH ?= arm CROSS_COMPILE?= arm-unknown-linux-gnu- 我用的编译器是4.0.1版本的,一般的3.x的应该都没问题-HHARM2410: 1. Ftp://ftp.arm.linux.org.uk downloaded from the linux kernel, as a result of the reasons the project has run 2.6.11,2.6.13 and 2.6.15, try a bit ftp.kernel.org downloaded 2.6.16, no run up, stop. 2. Editor linux-2.6.15/Makefile, ARCH? = $ (SUBARCH) CROSS_COMPILE? = Read ARCH? = Arm CROSS_COMPILE? = Arm-unknown-linux-gnu-compiler I used is version 4.0.1, the general 3.x should be no problem
Platform: | Size: 68608 | Author: | Hits:

[Other1111

Description: 求标准偏差 > function c=myfunction(x) > [m,n]=size(x) > t=0 > for i=1:numel(x) > t=t+x(i)*x(i) > end > c=sqrt(t/(m*n-1)) function c=myfunction(x) [m,n]=size(x) t=0 for i=1:m for j=1:n t=t+x(i,j)*x(i,j) end end c=sqrt(t/(m*n-1-Standard deviation for
Platform: | Size: 90112 | Author: | Hits:

[Internet-NetworkFileZilla_3.1.5.1_src

Description: FileZilla is a cross-platform graphical FTP, FTPS and SFTP client a lot of features, supporting Windows, Linux, Mac OS X and more. FileZilla Server is a reliable FTP server for Windows. it is a Client App,and a platform-independent version. important:change EXT name from ".rar" to ".tar.bz2"-FileZilla is a cross-platform graphical FTP, FTPS and SFTP client a lot of features, supporting Windows, Linux, Mac OS X and more. FileZilla Server is a reliable FTP server for Windows.it is a Client App, and a platform-independent version.important: change EXT name from . rar to . tar.bz2
Platform: | Size: 2689024 | Author: 张真 | Hits:

[assembly languageCAN_C8051F500

Description: CAN of C8051F500/F510 CAN 2.0 Bus 發送跟接收Keil C source sample code.可以用在CAN 2.x的上面喔~-CAN of C8051F500/F510 CAN 2.0 Bus sent with the receiver Keil C source sample code. Can be used in the above CAN 2.x喔~
Platform: | Size: 9216 | Author: 古小寶 | Hits:

[Other Embeded programgpio-test

Description: 1、将makefile中的 CROSS =/usr/local/arm/2.95.3/bin/arm-linux- CFLAGS+=-I/usr/local/src/2.4.18-rmk7/include CFLAGS+=-I/usr/local/src/2.4.18-rmk7/include/linux CFLAGS+=-I/usr/local/arm/2.95.3/arm-linux/include 路径改为你宿主机上的。 2、#make,来编译驱动模块。 3、#export PATH=$PATH:/usr/local/arm/2.95.3/bin //取决于你宿主机上的交叉编译工具路径 #arm-linux-gcc -o gpio_test gpio_test.c //编译应用程序 最终在你的当前文件夹下会生成gpiodrv.o与gpio_test两个文件。 4、#mkdir /tmp/1 5、通过ftp的方法,把gpio_test与gpiodrv.o文件下载到你的开发板上的/tmp/1目录中。 6、#mknod /dev/gpio c 220 0 //创建文件节点 #insmod gpiodrv.o #chmod +x gpio_test #./gpio_test 然后,就可以看到四个LED灯在闪烁了。:)-1, the makefile in the CROSS =/usr/local/arm/2.95.3/bin/arm-linux- CFLAGS+ =- I/usr/local/src/2.4.18-rmk7/include CFLAGS+ =- I/usr/local/src/2.4.18-rmk7/include/linux CFLAGS+ =- I/usr/local/arm/2.95.3/arm-linux/include changed the path on your host. 2,# make, to compile driver modules. 3,# export PATH = $ PATH:/usr/local/arm/2.95.3/bin// depends on your host on the path of the cross compiler tool# arm-linux-gcc-o gpio_test gpio_test.c// compile the application procedures for the ultimate in your current folder will be generated under the two documents gpiodrv.o and gpio_test. 4,# mkdir/tmp/1 5, through the ftp way to gpiodrv.o File Download gpio_test with the development of your board/tmp/1 directory. 6,# mknod/dev/gpio c 220 0// create a file node# insmod gpiodrv.o# chmod+ x gpio_test#./Gpio_test then four LED lights can be seen in the flicker of. :)
Platform: | Size: 9216 | Author: 马工 | Hits:

[Ftp Clientfilezilla-3.2.4.1

Description: FileZilla is a cross-platform graphical FTP, FTPS and SFTP client a lot of features, supporting Windows, Linux, Mac OS X and more. FileZilla Server is a reliable FTP server for Windows.
Platform: | Size: 4013056 | Author: lkm | Hits:

[matlabjbeam

Description: JBEAM-soft is a software package written in MATLAB. It was used to generate the simulation results, as well as figures, in paper "JBEAM: multiscale curve coding via beamlets" by X. Huo and Jihong Chen. This paper will appear in IEEE Trans. Image Processing, 14 (11), in November 2005
Platform: | Size: 302080 | Author: Galilleo | Hits:

[JSP/JavaAutomail

Description: 自动发生报表邮件的程序,自动到FTP server 读取XML文件信息,按照格式,生成报表,然后自动发送邮件。-send report by mail automatically, the program will read the xml file information from the FTP server, generate the report according to the format, then sent the mail to the corresponding mail list.
Platform: | Size: 8184832 | Author: sysmedia | Hits:

[Driver Developgithub_ldd3forlinux3.x

Description: ldd3 <linux设备驱动程序>的源代码 经过改写 从国外某FTP下载 适用于 3.x LINUX系统 书中自带地址下载的代码仅仅适合 2.X LINUX-ldd3 linux device driver source code but rewritten for 3.x LINUX system
Platform: | Size: 331776 | Author: DEF | Hits:
« 12 3 »

CodeBus www.codebus.net