代码搜索:cli

找到约 6,094 项符合「cli」的源代码

代码结果 6,094
www.eeworm.com/read/189219/8484292

c cliconn.c

#include #include #include #include "ourhdr.h" /* Create a client endpoint and connect to a server. */ int /* returns fd if all OK,
www.eeworm.com/read/286972/8734067

h avrlibdefs.h

#ifndef AVRLIBDEFS_H #define AVRLIBDEFS_H // Code compatibility to new AVR-libc // outb(), inb(), BV(), sbi(), cbi(), sei(), cli() #ifndef outb #define outb(addr, data) addr = (data) #end
www.eeworm.com/read/185783/8985239

c loop.c

#include "calld.h" #include #include static void cli_done(int); static void child_done(int); static fd_set allset; /* one bit per client conn, plus one for listenfd */ /
www.eeworm.com/read/185783/8985683

c cliconn.c

#include #include #include #include "ourhdr.h" /* Create a client endpoint and connect to a server. */ int /* returns fd if all OK,
www.eeworm.com/read/183697/9144032

c client.c

#include // #include // #include #define DEFAULT_PORT 5050 #define DATA_BUFFER 1024 void main1(int argc, char *argv[]) { WSADATA wsaData
www.eeworm.com/read/183272/9172422

c loop.c

#include "calld.h" #include static void cli_done(int); static void child_done(int); /* * One bit per client cxn, plus one for listenfd; * modified by loop() and cli_done() */ static fd_
www.eeworm.com/read/183272/9172995

h opend.h

#include "apue.h" #include #define CL_OPEN "open" /* client's request for server */ extern char errmsg[]; /* error message string to return to client */ extern int oflag; /* open() fl
www.eeworm.com/read/183272/9173164

29 fig17.29

#include "apue.h" #include #define CL_OPEN "open" /* client's request for server */ extern char errmsg[]; /* error message string to return to client */ extern int oflag; /* open() fl
www.eeworm.com/read/377154/9292734

makefile

ftp_srv:server.o ftp_cli gcc server.o -o ftp_srv server.o:server.c gcc -c server.c -o server.o ftp_cli:client.o gcc client.o -o ftp_cli client.o:client.c gcc -c client.c -o client.o clean: rm -rf
www.eeworm.com/read/371500/9551404

c loop.c

#include "calld.h" #include #include static void cli_done(int); static void child_done(int); static fd_set allset; /* one bit per client conn, plus on