You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey F-stack Geeks,
I am New to F-stack. I am trying to make tcp connection via F-stack over dpdk(19.08). The example given in F-stack package creates server but when i am trying to connect that port from same or another pc It is not responding anything.Still in netstat it is showing that server is listening but i am not able to connect from my client application. I tried client application with n without (eg Winshock Client app) F-stack but nothing good.
Here is my f-stack client code.
#include <stdio.h>
#include <sys/ioctl.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <strings.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <errno.h>
#include <assert.h>
Hey F-stack Geeks,
I am New to F-stack. I am trying to make tcp connection via F-stack over dpdk(19.08). The example given in F-stack package creates server but when i am trying to connect that port from same or another pc It is not responding anything.Still in netstat it is showing that server is listening but i am not able to connect from my client application. I tried client application with n without (eg Winshock Client app) F-stack but nothing good.
Here is my f-stack client code.
#include <stdio.h>
#include <sys/ioctl.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <strings.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <errno.h>
#include <assert.h>
#include "ff_config.h"
#include "ff_api.h"
#include "ff_epoll.h"
#define MAX_EVENTS 512
struct epoll_event ev;
struct epoll_event events[MAX_EVENTS];
int epfd;
int sockfd;
char html[] =
"HTTP/1.1 200 OK\r\n"
"Server: F-Stack\r\n"
"Date: Sat, 25 Feb 2017 09:26:33 GMT\r\n"
"Content-Type: text/html\r\n"
"Content-Length: 438\r\n"
"Last-Modified: Tue, 21 Feb 2017 09:44:03 GMT\r\n"
"Connection: keep-alive\r\n"
"Accept-Ranges: bytes\r\n"
"\r\n"
"\r\n"
"\r\n"
"\r\n"
"<title>Welcome to F-Stack!</title>\r\n"
"<style>\r\n"
" body { \r\n"
" width: 35em;\r\n"
" margin: 0 auto; \r\n"
" font-family: Tahoma, Verdana, Arial, sans-serif;\r\n"
" }\r\n"
"</style>\r\n"
"\r\n"
"\r\n"
"
Welcome to F-Stack!
\r\n""\r\n"
"
For online documentation and support please refer to\r\n"
"<a href="http://F-Stack.org/\">F-Stack.org.
\r\n"
"\r\n"
"
Thank you for using F-Stack.
\r\n""\r\n"
"";
struct sockaddr_in my_addr;
int loop(void arg)
{
/ Wait for events to happen */
}
int main(int argc, char * argv[])
{
ff_init(argc, argv);
}
The text was updated successfully, but these errors were encountered: