473,749 Members | 2,451 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

error: syntax error before numeric constant

5 New Member
im creating a iterrative server
and i get this error

error: syntax error before numeric constant

and this errors occurs near this line:

int listen(sock,5);

need help

and this is begining of my iterative server
can any one check my code to see if im on the right track:
Expand|Select|Wrap|Line Numbers
  1. #include <sys/types.h>
  2. #include <sys/socket.h>
  3. #include <netinet/in.h>
  4. #include <netdb.h>
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7. #include <string.h>      // for strlen() 
  8.  
  9. #define EOB "$$"
  10. #define  KB_size 1024     
  11. int ClientNo = 0;
  12.  
  13. int main(void)
  14. {
  15.          int sock;
  16.          int intPort;
  17.          int NoClients;
  18.          int num;
  19.          int i;
  20.          char host[80];
  21.          int mssock;   /* fd from accept return */
  22.          struct sockaddr_in server;   /* socket struct for server connection */
  23.          struct sockaddr_in client;   /* socket struct for client connection */
  24.          int clientLen;   /* returned length of client from accept() */
  25.          int rval;   /* return value from read() */
  26.          char KB_buff[KB_size]; 
  27.  
  28.  
  29.  
  30.          sock = sockTCP_create();
  31.          /* Open a socket, not bound yet. */
  32.         if ((sock = socket(AF_INET, SOCK_STREAM, 0)) > 0)
  33.         printf("Opening stream socket \n");
  34.  
  35.         // Binding a socket //
  36.  
  37.         printf("Could you Please Enter port:  \n");
  38.         fgets(KB_buff, KB_size, stdin); 
  39.         intPort = atoi(KB_buff);
  40.         bzero((char *) &server, sizeof(server));
  41.         server.sin_family = AF_INET;
  42.         server.sin_addr.s_addr = INADDR_ANY;
  43.         server.sin_port = htons(intPort);
  44.         (bind(sock, (struct sockaddr *) &server, sizeof(server)));
  45.         printf("Socket has port %hu\n", ntohs(server.sin_port));
  46.  
  47.         //Listen a socket///
  48.         int listen(sock,5);
  49.         if (listen < 0)
  50.             printf("Socket is listening");
  51.  
  52.         //Usess accept function to accept an incoming connection request//
  53.  
  54.  
  55. }
Sep 19 '07 #1
3 17090
gpraghuram
1,275 Recognized Expert Top Contributor
Hi,
The error is here
Expand|Select|Wrap|Line Numbers
  1. //Listen a socket///
  2. int listen(sock,5); //why there is a int befor listen call.
  3. //remove that and the program can compile properly.
  4.  
  5.  
Thanks
Raghuram
Sep 19 '07 #2
chella
51 New Member
Hi,

The problem in 'int listen(sock,5)' is the way it is used.

It should be
int listn;
listn = listen(sock,5)

Hope this will work fine.

Regards,
Chella
Sep 19 '07 #3
ollii
5 New Member
thank you very much it worked
Sep 19 '07 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

17
7462
by: Steve Jorgensen | last post by:
If you've ever employed custom error numbers and messages in you programs, you've probably ended up with code similar to what I've ended up with in the past something like... <code> public Const xyzcErrNumBase As Long = 500 Public Const xyzcErrNumHeyDontDoThat = xyzcErrNumBase + 1 Public Const xyzcErrTxtHeyDontDoThat = "Hey! Don't do that!"
13
10144
by: dbuchanan | last post by:
Hello, Here is the error message; ---------------------------- Exception Message: ForeignKeyConstraint Lkp_tbl040Cmpt_lkp302SensorType requires the child key values (5) to exist in the parent table. ----------------------------
2
1946
by: reinisr | last post by:
Hi! This program: template<class T_index, class T_data> class AAA { public: AAA(int ii = 0,int jj = 0) {} };
2
4143
by: Josue.Barrios | last post by:
Hi, i'm trying to make a stored procedure and appear this error on the code, i hope somebody can help me SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE PROCEDURE factura_detalle_data AS BEGIN
7
2981
by: Peter | last post by:
When compiling the following code to study the execv() system call, I get the compilation error for exit() shown below. I'm using ssh from home to access my university Unix console. I was thinking that maybe the firewall or my access privileges may be the problem. Can someone please explain. #include <unistd.h>
3
3271
by: rorni | last post by:
Hi, I'm porting code from Windows to HP-UX 11, compiling with g++. I'm getting a compilation error on the system's debug.h include file, which is included very indirectly through a series of other system include files. The one I am including is <map> . The errors I am getting are: /opt/hp-gcc-4.2.1/lib/gcc/ia64-hp-hpux11.23/4.2.1/../../../../include/c++/4.2.1/debug/debug.h: At global scope:...
18
2270
by: George2 | last post by:
Hello everyone, What is wrong with the code, I just want to allocate an array of 100 void* pointers. :-) int main() { void** p;
2
2020
by: HughManity | last post by:
I'm getting a " incorrect syntax near ',' " no matter what I try to do. Is there any place where the precise and demanding rules for stringing together SQL commands is explained? For example what do signify, and when should it be used? I assume that only a table column name should go between those two characters - is that true? Also, how do you represent an alphanumeric literal? 'abc'? What about a numeric literal - do you put some sort...
2
5173
by: tvnaidu | last post by:
I am getting this error for line 108, I kept C code also below, any idea?. main.c:108: underscore in number main.c:108: syntax error before numeric constant 104: #define EXPAND_CONCAT(name1,name2) name1 ## name2 105: #define CONCAT(name1,name2) EXPAND_CONCAT(name1,name2) 106: #define RT_MODEL CONCAT(MODEL,_rtModel)
0
8833
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9568
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9389
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9335
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9256
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6079
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4709
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
2794
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2218
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.