我是靠谱客的博主 忧虑毛巾,最近开发中收集的这篇文章主要介绍【WebRTC---进阶篇】(一)服务器基础编程一个最简单的服务器程序,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一个最简单的服务器程序

server.h

/**
 * Server Class 
 *
 * @author lichao
 * @date 2019-08-07
 * @copyleft GPL 2.0
 */

#ifndef __SERVER_H__
#define __SERVER_H__

namespace avdance {

class Server {

  public:
    Server();  //consrtuct
    ~Server(); //destruct

  public:
    void run();

};

} //namespace avdance

#endif //__SERVER_H__

server.cpp

/**
 * the implement of Server Class 
 *
 * @author lichao
 * @date 2019-08-07
 * @copyleft GPL 2.0
 */

#include <iostream>
#include <unistd.h>

#include "server.h"


namespace avdance {

Server::Server(){
  std::cout << "Server construct..." << std::endl;
}

Server::~Server(){
  std::cout << "Server destruct..." << std::endl;
}

void Server::run(){
  while(1){
  
    std::cout << "the server is runing..." << std::endl;
    ::usleep(1000000); //u

最后

以上就是忧虑毛巾为你收集整理的【WebRTC---进阶篇】(一)服务器基础编程一个最简单的服务器程序的全部内容,希望文章能够帮你解决【WebRTC---进阶篇】(一)服务器基础编程一个最简单的服务器程序所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部